How to fix my code with parfor-Loops array?

1 visualización (últimos 30 días)
PRED LIU
PRED LIU el 5 de Jun. de 2020
Respondida: Edric Ellis el 5 de Jun. de 2020
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

Respuesta aceptada

Edric Ellis
Edric Ellis el 5 de Jun. de 2020
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.

Más respuestas (0)

Categorías

Más información sobre Parallel for-Loops (parfor) en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by