Combine two cell arrays
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposta accettata
Azzi Abdelmalek
il 10 Ago 2013
Modificato: Azzi Abdelmalek
il 10 Ago 2013
Maybe you want
X=[num2cell([18;21;17;20;19]) cellstr(['m';'f';'m';'m';'f'])]
0 Commenti
Più risposte (1)
Andrei Bobrov
il 10 Ago 2013
Modificato: Andrei Bobrov
il 10 Ago 2013
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 Commenti
Vedere anche
Categorie
Scopri di più su Matrices and Arrays in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!