How do I change cell array to matrix?

3 visualizaciones (últimos 30 días)
K
K el 10 de Mayo de 2018
Comentada: Star Strider el 10 de Mayo de 2018
This question has been asked several times but none of the answers have helped me so far.
I have a cell array, C, that is 5 x 6 with each cell being 1 x 1.
How do I get a resulting 5 x 6 matrix with all indices being treated as numbers? I have used cell2mat(C) but that just results in the error 'Dimensions of matrices being concatenated are not consistent.' Shouldn't this work since each cell is 1 x 1?
  3 comentarios
Star Strider
Star Strider el 10 de Mayo de 2018
‘Shouldn't this work since each cell is 1 x 1?’
No.
Consider:
C = {{rand(2)}, {rand(3)}}
C =
1×2 cell array
{1×1 cell} {1×1 cell}
K
K el 10 de Mayo de 2018
The actual cell array is much larger. But I attached it..

Iniciar sesión para comentar.

Respuesta aceptada

Star Strider
Star Strider el 10 de Mayo de 2018
The numbers are stored as character arrays, the reason the dimensions did not match.
Simply convert them to a numeric array:
N = str2double(A1)
  2 comentarios
K
K el 10 de Mayo de 2018
Thank you!
Star Strider
Star Strider el 10 de Mayo de 2018
As always, my pleasure!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

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

Etiquetas

Productos


Versión

R2016b

Community Treasure Hunt

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

Start Hunting!

Translated by