How to loop multiple text files with different filenames ?
Show older comments
Hello,
I have multiple text files with different filenames like x001.txt, where x is varying from a-d. I have imported all the files. How to i loop them for reading the data from each of the text file. Thanks.
4 Comments
madhan ravi
on 8 Mar 2019
doc sprintf
Prajwal Kadlaplamutt Ravindra Kumar
on 8 Mar 2019
Mansa Murthy
on 8 Mar 2019
Hi..how to save extracted features of 100 images in one .mat file?
i want to save all the values (homogenity,contrast,energy) of 100 images in one .mat file?
Answers (1)
KSSV
on 8 Mar 2019
files = dir('*.txt') ;
N = length(files) ;
for i = 1:N
thisfile = files(i).txt ;
% Do what you want
end
Categories
Find more on Loops and Conditional Statements in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!