How to fix my code with parfor-Loops array?

My code have a lot of error ,how to fix ?
X = ones( 1 ,3);
B = zeros( 20 ,3);
parfor i = 1 : 6
kIndex = 1+2*(i-1) : 2*i;
B(kIndex,:) = X;
end

 採用された回答

Edric Ellis
Edric Ellis 2020 年 6 月 5 日

0 投票

Output variables in parfor must be either sliced or reduction. There's more information in the doc. But basically, you cannot assign into an output variable like B using a computed index in the way that you are doing. One of the subscripts into B must be the loop index i.

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeMatrix Indexing についてさらに検索

製品

リリース

R2019b

質問済み:

2020 年 6 月 5 日

回答済み:

2020 年 6 月 5 日

Community Treasure Hunt

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

Start Hunting!

Translated by