read and show text files in GUI MATLAB
3 views (last 30 days)
Show older comments
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 Comments
Answers (0)
See Also
Categories
Find more on Get Started with MATLAB in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!