Borrar filtros
Borrar filtros

I have this error "In an assignment A(I) = B, the number of elements in B and I must be the same."

1 visualización (últimos 30 días)
My code is like
I=zeros(1,5);
for i=1:4
[ma,I(i)]=max(areas);
end
Error: "In an assignment A(I) = B, the number of elements in B and I must be the same." [ma,I(i)]=max(areas); the second argument y in [x,y]=max(a) is a single element and I am trying to send single element only right?

Respuesta aceptada

Walter Roberson
Walter Roberson el 29 de Abr. de 2016
max() of a 2D array results in a vector, not a scalar. The indices of that would not fit in the single location I(i)
You should be asking yourself why you are doing the same thing in every iteration of the loop. max(areas) is not going to change in the loop.
Why are you allocating 5 locations but only looping to 4?
  2 comentarios
pranith kumar
pranith kumar el 29 de Abr. de 2016
Editada: Walter Roberson el 30 de Abr. de 2016
Thanks for the reply.
The original code is different and very long. max(areas) is going to change in each loop as per that code. I just gave a small part to show where my error mainly is.
sorry, I should have given the question in better format.
my areas is a row vector.
I=zeros(1,4);
for i=1:4
[ma,I(i)]=max(areas);
areas(I(i))=min(areas);
end
so I am trying to get the Indices of first four Max areas in to I vector. now please give me a code for that please.
Walter Roberson
Walter Roberson el 30 de Abr. de 2016
Your area variable is becoming a 2D array at some point.
Just before that section of code, add
assert(isscalar(areas), 'areas is unexpectedly array %s', str2num(size(areas)));

Iniciar sesión para comentar.

Más respuestas (1)

Guillaume
Guillaume el 29 de Abr. de 2016
If areas is anything but a vector or scalar, then the return values of max are not scalar. See:
areas = magic(3)
[ma, l] = max(areas)
If you want the max of the whole matrix:
[ma, l(i)] = max(areas(:));
Note that in that case l(i) is the linear index of the max location.
  1 comentario
pranith kumar
pranith kumar el 29 de Abr. de 2016
sorry, I should have given the question in better format. my areas is a ROW VECTOR .
I=zeros(1,4);
for i=1:4
[ma,I(i)]=max(areas);
areas(I(i))=min(areas);
end
so I am trying to get the Indices of first four Max areas in to I vector. now please give me a code for that please.

Iniciar sesión para comentar.

Categorías

Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.

Etiquetas

Aún no se han introducido etiquetas.

Community Treasure Hunt

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

Start Hunting!

Translated by