How can i read multiples files from a directory?
2 ビュー (過去 30 日間)
古いコメントを表示
I have used a loop but i get only the content of the last file. Can someone help me? Thanks in advance
0 件のコメント
回答 (1 件)
Giorgos Papakonstantinou
2015 年 3 月 10 日
Assuming you want to open a few files. Create a cell|filenames|. Then the loop would be like this>
filenames = {'file1.txt' 'file10.txt' 'file11.txt'};
for ii=1:length(filenames)
fid = fopen(char(filenames(ii)));
.... % here you can do textscan for example
fclose(fid);
end
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Data Import and Export についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!