Combine two cell arrays
2 ビュー (過去 30 日間)
古いコメントを表示
I have two cell arrays:
X{1,1}=[18;21;17;20;19];
X{1,2}=cellstr(['m';'f';'m';'m';'f']);
How to create new cell array like this:
Z=[X{1,1}(:,:) X{1,2}(:,:)]
0 件のコメント
採用された回答
Azzi Abdelmalek
2013 年 8 月 10 日
編集済み: Azzi Abdelmalek
2013 年 8 月 10 日
Maybe you want
X=[num2cell([18;21;17;20;19]) cellstr(['m';'f';'m';'m';'f'])]
0 件のコメント
その他の回答 (1 件)
Andrei Bobrov
2013 年 8 月 10 日
編集済み: Andrei Bobrov
2013 年 8 月 10 日
X{1,1}=num2str([18;21;17;20;19]);
X{1,2}=cellstr(['m';'f';'m';'m';'f']);
strcat(X{:})
OR
X{1,1}=num2cell([18;21;17;20;19]);
X{1,2}=cellstr(['m';'f';'m';'m';'f']);
[X{:}]
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Matrices and Arrays についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!