how to cell array all data into a matrices

2 ビュー (過去 30 日間)
singh
singh 2015 年 4 月 29 日
コメント済み: Star Strider 2015 年 4 月 29 日
A=CHM(cellfun(@(x)~isempty(x),CHM))
A =
[1x4 double] [19] [1x4 double] [1x4 double]
A{:}
ans =
1 2 14 16
ans =
19
ans =
6 12 15 20
ans =
3 4 7 17
how to get it into single matrix
B=[1,2,14,16,19,6,12,15,20,3,4,7,17]
strider plz check

採用された回答

Star Strider
Star Strider 2015 年 4 月 29 日
Slightly different with ‘A’ here, since it is a cell array of vectors and not a cell array of cells, so we do not need cell2mat this time:
B = horzcat(A{:})
produces:
B =
1 2 14 16 19 6 12 15 20 3 4 7 17
  2 件のコメント
singh
singh 2015 年 4 月 29 日
thanks stinder
Star Strider
Star Strider 2015 年 4 月 29 日
As always, my pleasure!

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by