How to put loop for multiple folders in matlab?

2 ビュー (過去 30 日間)
Anu
Anu 2018 年 9 月 17 日
コメント済み: Adam Danz 2018 年 9 月 18 日
I am having 62 folders. I am having 55 number of images in each folder. how should i put loop for multiple folders

採用された回答

Adam Danz
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 件のコメント
Anu
Anu 2018 年 9 月 18 日
Thank you. but can we put folder1,folder2,... as in the loop, folder(i)??
Adam Danz
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 件)

カテゴリ

Help Center および File ExchangeProgramming についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by