How to implement a for cycle to run a sequence of text files with the system command
1 回表示 (過去 30 日間)
古いコメントを表示
Hi,
I would like to open a sequence of files by combining a for cycle and a list of files to open. How can I do that? I attach a sample list, that I plan to use as an input.
I thank you in advance.
0 件のコメント
回答 (1 件)
Voss
2023 年 7 月 17 日
Here's one way:
fid = fopen('system_TXT.txt');
while ~feof(fid)
file_name = fgetl(fid);
% process file file_name
end
fclose(fid);
参考
カテゴリ
Help Center および File Exchange で Startup and Shutdown についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!