How can I merge two array's?
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Biza Ferreira
il 29 Ott 2015
Commentato: Muthu Annamalai
il 29 Ott 2015
I have two array and I want to merge in one . A =['test']; B= [1, 2, 3]; C= ['test', 1, 2, 3];
0 Commenti
Risposta accettata
Adam
il 29 Ott 2015
{ A, B }
will merge them into a cell array as two distinct cells
[ A, num2cell( B ) ]
will give you a 4-element cell array with the elements of B each in their own cell.
0 Commenti
Più risposte (1)
Vedere anche
Categorie
Scopri di più su Software Development Tools in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!