transform a cell in a column

1 回表示 (過去 30 日間)
Rica
Rica 2012 年 10 月 29 日
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 件のコメント
Jan
Jan 2012 年 10 月 29 日
Transform to a column vector or cell?

サインインしてコメントする。

回答 (3 件)

Matt J
Matt J 2012 年 10 月 29 日
column = vertcat(A{:});

José-Luis
José-Luis 2012 年 10 月 29 日
A = cell2mat(A);

Jan
Jan 2012 年 10 月 29 日
If speed matters: FEX: Cell2Vec.

カテゴリ

Help Center および File ExchangeDates and Time についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by