フィルターのクリア

parfor indexing and order

2 ビュー (過去 30 日間)
xplore29
xplore29 2013 年 4 月 3 日
[a,b,c]=size(Mask); % a=b=c=3;
parfor i=1:size(Mask,3)
i
end
I was expecting to see i=1,i=2,i=3 in a sequence as one would see in a for loop but it is giving me i=3,i=2,i=1 . This is in reverse order. I cant figure out the reason.

採用された回答

xplore29
xplore29 2013 年 4 月 4 日
Although I am not using parfor for variable display purpose but I am curious to know that if I try to display the variable like this in parfor the order will always be reverse (like in my example) or it can be random.

その他の回答 (1 件)

Edric Ellis
Edric Ellis 2013 年 4 月 4 日
PARFOR loops can run in parallel, and as such, the iterations might run in any order. You should not rely on this order. In particular, as you have observed, PARFOR starts running iterations in reverse order.

カテゴリ

Help Center および File ExchangeParallel for-Loops (parfor) についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by