read and show text files in GUI MATLAB
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi EveryBody
hope you all are enjoying good health. i have 55 '*.text' files.every file contain image data and these are in folder (Image files). i want to see these images in axis using a pushbutton in GUI MATLAB. i am using the code
for k = 1:55
textFilename = ['text' num2str(k) '.txt'];
fid = fopen(textFilename, 'rt');
textData = fread(fid);
fclose(fid);
disp (textData);
end
i want to see the images using a slider.
any help is appreciated please.
Muhammad Isa.
2 commentaires
Réponses (0)
Voir également
Catégories
En savoir plus sur Get Started with MATLAB dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!