Dataset loop and iteration
2 ビュー (過去 30 日間)
古いコメントを表示
Hi, i have a problem with file.txt loop. I have to plot a series of datasets in different files (60). Is it possible to iterate the same procedure for each file in order not to define 60 variables? each dataset have different rows and columns numbers. Is it possible?
1 件のコメント
Kaushik Lakshminarasimhan
2018 年 1 月 17 日
Yes, you need to create an a array of filenames and then use it to load them one by one. You don't have to manually define the array, you can use the dir function.
採用された回答
KSSV
2018 年 1 月 18 日
files = dir('*.txt') ; % all the text files in the folder
N = length(files) ; % Total number of files
% loop for each file
for i = 1:N
thisfile = files(i).name ;
% load the file
% do what you want
end
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Data Type Conversion についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!