transform a cell in a column

1 Ansicht (letzte 30 Tage)
Rica
Rica am 29 Okt. 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 Kommentar
Jan
Jan am 29 Okt. 2012
Transform to a column vector or cell?

Melden Sie sich an, um zu kommentieren.

Antworten (3)

Matt J
Matt J am 29 Okt. 2012
column = vertcat(A{:});

José-Luis
José-Luis am 29 Okt. 2012
A = cell2mat(A);

Jan
Jan am 29 Okt. 2012
If speed matters: FEX: Cell2Vec.

Kategorien

Mehr zu Dates and Time finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by