transform a cell in a column

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 日

1 投票

column = vertcat(A{:});
José-Luis
José-Luis 2012 年 10 月 29 日

0 投票

A = cell2mat(A);
Jan
Jan 2012 年 10 月 29 日

0 投票

If speed matters: FEX: Cell2Vec.

カテゴリ

ヘルプ センター および File ExchangeDates and Time についてさらに検索

質問済み:

2012 年 10 月 29 日

Community Treasure Hunt

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

Start Hunting!

Translated by