How to put loop for multiple folders in matlab?
2 ビュー (過去 30 日間)
古いコメントを表示
採用された回答
Adam Danz
2018 年 9 月 17 日
allFolders = {'C:\Users\Anu\folder1', 'C:\Users\Anu\folder2', 'C:\Users\Anu\folder3'};
for i = 1:length(allFolders)
currentFolder = allFolders{i};
end
2 件のコメント
Adam Danz
2018 年 9 月 18 日
I don't understand your follow-up question. Can you give an example of what you'd like to do?
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!