Borrar filtros
Borrar filtros

reshape

15 visualizaciones (últimos 30 días)
stephanie borg
stephanie borg el 6 de Abr. de 2011
Comentada: madhan ravi el 2 de Abr. de 2019
??? Error using ==> reshape To RESHAPE the number of elements must not change.
Error in ==> sym_rec_img_preprocess at 32 Ibox = reshape(Ibox,[4 ((sizer*sizec)/noimages)]);
Error in ==> sym_rec_main2 at 78 img = sym_rec_img_preprocess(I, sizer, sizec,noimages);
sizer = size3Dr; %32
sizec = size3Dc;
noimages = sizer/6;
I = I3Dtotal(:,:,i);
img = sym_rec_img_preprocess(I, size3Dr, size3Dc, noimages); % line 78
what am i doing wrong?

Respuesta aceptada

Matt Fig
Matt Fig el 6 de Abr. de 2011
Go into sym_rec_img_preprocess and put these right before line 32:
size(Ibox)
size(sizer)
size(sizec)
noimages
Then tell us what the output to the command window says.
  21 comentarios
stephanie borg
stephanie borg el 6 de Abr. de 2011
i sent you a personal msg...did you receive it?
Matt Fig
Matt Fig el 7 de Abr. de 2011
No, I didn't. Did you use the interface that comes up when you click my name? (Contact Matt Fig)

Iniciar sesión para comentar.

Más respuestas (2)

Laura Proctor
Laura Proctor el 6 de Abr. de 2011
In the code sym_rec_img_preprocess, you are trying to use RESHAPE to reshape the variable Ibox to a size that is incompatible with the original size of Ibox. Try putting in a breakpoint on line 32 of sym_rec_img_preprocess and determine the size of Ibox as well as the size of (sizer*sizec)/noimages, you will see that:
4*(sizer*sizec)/noimages ~= numel(Ibox)

stephanie borg
stephanie borg el 7 de Abr. de 2011
yes that 's what i did. is it possible if i send you the program? becaus I can't seem to do it write. When I eliminate all the errors it start again from the first one!
  3 comentarios
seyed hosein alhoseiny
seyed hosein alhoseiny el 2 de Abr. de 2019
hi this error: reshape To RESHAPE the number of elements must not change dont Appear in MATLAB VER 2018a
but this error I see in MATLAB2016b
madhan ravi
madhan ravi el 2 de Abr. de 2019
Instead of asking in an 8 year old thread respond to your question.

Iniciar sesión para comentar.

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