Combine two cell arrays

2 ビュー (過去 30 日間)
Artyom
Artyom 2013 年 8 月 10 日
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}(:,:)]

採用された回答

Azzi Abdelmalek
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'])]

その他の回答 (1 件)

Andrei Bobrov
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{:}]

カテゴリ

Help Center および File ExchangeMatrices and Arrays についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by