The PARFOR loop cannot run due to the way variable 'm' is used

2 ビュー (過去 30 日間)
Ali Al-Saegh
Ali Al-Saegh 2020 年 9 月 4 日
コメント済み: Ali Al-Saegh 2020 年 9 月 4 日
Matlab shows "The PARFOR loop cannot run due to the way varialbe 'm' is used".
Please, how to parallelize both of the loops.
m=1;
for iClss = 1:nuClasses
for iTry = 1:nuTrials
fCreateFiless(cTrials{iTry,iClss}', iClss, parentFolder, m, samFreq);
m=m+1;
end
end

採用された回答

Matt J
Matt J 2020 年 9 月 4 日
編集済み: Matt J 2020 年 9 月 4 日
parfor m=1:nuClasses*nuTrials
[iTry,iClss]=ind2sub(size(cTrials),m);
fCreateFiless(cTrials{iTry,iClss}', iClss, parentFolder, m, samFreq);
end

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by