'Merge' two cell arrays into one single cell array (NOT concatenation!)
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Dear All,
I am not familiar with cell array and have one simple question as follows-
There are two 1x2 cell arrays, for c1={1;2 5} , and c2= {3;4 6;7;8;9;10}.
Now I need to create a new 1x2 cell array c3 that = {1;2;3;4 5;6;7;8;9;10}.
I've tried concatenate but it returned as a 2x2 cell array
My code c3=cat(1,c1,c2)
Please let me know how to do this correctly, any advice would be appreciated!
K
0 Commenti
Risposta accettata
Stephen23
il 8 Ago 2021
c1 = {[1;2],5}
c2 = {[3;4],[6;7;8;9;10]}
out = cellfun(@vertcat,c1,c2,'uni',0)
celldisp(out)
Più risposte (0)
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!