Is it possible to run multiple parfor loops successively like in the following example:
A = zeros(4, 10);
parfor i = 1:4
for j = 1:10
if j < 6
A(i, j) = i + j;
else
A(i, j) = pi;
end
end
end
B = zeros(4, 10);
parfor i = 1:4
for j = 1:10
if j < 4
B(i, j) = i ;
else
B(i, j) = 2*pi;
end
end
end

1 件のコメント

KSSV
KSSV 2017 年 2 月 24 日
You should have run this and checked. It run's well. you can run two par fors successively.

サインインしてコメントする。

 採用された回答

Jan
Jan 2017 年 2 月 24 日

0 投票

Yes.

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeLoops and Conditional Statements についてさらに検索

質問済み:

2017 年 2 月 23 日

回答済み:

Jan
2017 年 2 月 24 日

Community Treasure Hunt

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

Start Hunting!

Translated by