transform a cell in a column

1 visualización (últimos 30 días)
Rica
Rica el 29 de Oct. de 2012
Hi!
I have a cell like this:
A=[5001*1 double]; [5001*1 double]; [5001*1 double]; [5001*1 double]; .. .. .. .. 700 times.
I want to trasform this cell in a column filled with datas
How could do it?
thanks
  1 comentario
Jan
Jan el 29 de Oct. de 2012
Transform to a column vector or cell?

Iniciar sesión para comentar.

Respuestas (3)

Matt J
Matt J el 29 de Oct. de 2012
column = vertcat(A{:});

José-Luis
José-Luis el 29 de Oct. de 2012
A = cell2mat(A);

Jan
Jan el 29 de Oct. de 2012
If speed matters: FEX: Cell2Vec.

Categorías

Más información sobre Dates and Time 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