How to clear the error on the code?

1 visualización (últimos 30 días)
PLACEIUS NISHIGA G
PLACEIUS NISHIGA G el 8 de Feb. de 2018
Comentada: Pavithra A el 15 de Mzo. de 2021
if true
x_of_size_of_U=W;
y_of_size_of_U=L;
U=[ho,E2];
for i=1:n
reshaped_U=reshape(U,x_of_size_of_U,y_of_size_of_U);
end
end
the error is given below
Error using reshape To RESHAPE the number of elements must not change.
Error in fincode (line 227) reshaped_U=reshape(U,x_of_size_of_U,y_of_size_of_U);
  3 comentarios
PLACEIUS NISHIGA G
PLACEIUS NISHIGA G el 14 de Feb. de 2018
W and L is the size of the image.i.e)256x256
Pavithra A
Pavithra A el 15 de Mzo. de 2021
Beam width call function error

Iniciar sesión para comentar.

Respuesta aceptada

Birdman
Birdman el 8 de Feb. de 2018
Change the line
reshaped_U=reshape(U,x_of_size_of_U,y_of_size_of_U);
to
reshaped_U=reshape(U,x_of_size_of_U,[]);
or
reshaped_U=reshape(U,[],y_of_size_of_U);
  2 comentarios
PLACEIUS NISHIGA G
PLACEIUS NISHIGA G el 8 de Feb. de 2018
Thank you sir,I try it .but again it show some error like
Error using reshape Product of known dimensions, 256, not divisible into total number of elements, 65560.
Error in fincode (line 226) reshaped_U=reshape(U,[],x_of_size_of_U); how to clear this?
Birdman
Birdman el 8 de Feb. de 2018
Then you need to choose divisible numbers for your data.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Logical en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by