for and parfor
古いコメントを表示
Simple question: why does FOR exist at all if we have PARFOR (which performs better and faster)?
採用された回答
その他の回答 (2 件)
Honglei Chen
2012 年 6 月 4 日
2 投票
To use PARFOR, each iteration has to be independent to each other. This is not always possible. The following document may be useful.
2 件のコメント
Nuchto
2012 年 6 月 4 日
Titus Edelhofer
2012 年 6 月 4 日
No, it won't. Just try to enter
parfor i=2:5
x(i) = x(i-1) + x(i-2);
end
You will see (if you have the Parallel Computing Toolbox) that x and parfor go a red line indicating an error.
Thomas
2012 年 6 月 4 日
1 投票
to use 'parfor' you need the parallel computing toolbox, which is not useful in basic matlab. The 'for' can be used in basic matlab without the need for the parallel processing toolbox. The parallel processing toolbox is an extra addon and costs money..
As regards to speed, it is only faster if your code can be parallelized :)
In the par for all loops need to be independent of each other.
2 件のコメント
Honglei Chen
2012 年 6 月 4 日
This is not entirely true as parfor is available in MATLAB, it just doesn't provide any benefit if you don't have Parallel Computing Toolbox, see
http://www.mathworks.com/help/techdoc/ref/parfor.html
Thomas
2012 年 6 月 4 日
that was what I meant, that you do get it in matlab but is of no use without the PCT.. sorry if it came through as otherwise....
カテゴリ
ヘルプ センター および File Exchange で Loops and Conditional Statements についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!