cell2mat with 1* 1 cell array
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
bugatti79
el 22 de Oct. de 2013
Comentada: Azzi Abdelmalek
el 24 de Oct. de 2013
Folks,
I have A{ii} which is a cell array 1*1 containing 18*9 matrix. I atttempt to convert to a matrix using B=cell2mat(A) but I get error stating
Cell contents reference from a non-cell array object.
I cannot change A{ii} to A(ii) is it violates
A(I) = B, the number of elements in B and
I must be the same.
Any ideas? Regards B
2 comentarios
Matt Kindig
el 22 de Oct. de 2013
Editada: Matt Kindig
el 22 de Oct. de 2013
What about
B = cell2mat(A{ii})
Respuesta aceptada
Más respuestas (0)
Ver también
Categorías
Más información sobre Cell Arrays en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!