Borrar filtros
Borrar filtros

how to solve the error

1 visualización (últimos 30 días)
sakshi Garg
sakshi Garg el 7 de Abr. de 2015
Respondida: James Tursa el 7 de Abr. de 2015
while trying to run the code, following line was showing an error. Please help me solve it.
code line: Icrop=zeros(1,1000000); Icrop{i} =imcrop(data,bbox(1,:));
error: Cell contents assignment to a non-cell array object.

Respuesta aceptada

James Tursa
James Tursa el 7 de Abr. de 2015
This line defined Icrop as a double:
Icrop=zeros(1,1000000)
And the curly braces { } in this line use lcrop as a cell array:
Icrop{i} = etc.
That is causing the error. You can't index into Icrop as a cell array when it has been defined as a double.

Más respuestas (0)

Categorías

Más información sobre Entering Commands 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