How to Combine two Cell Array to be 1 cell array?
Afficher commentaires plus anciens
Let's say:
A : 1x3 cell class
A={cell_1, cell_2, cell_3, }
A={[2x1 double],[5x1 double],[3x1 double]}
B : 1x2 cell class
B={cell_1, cell_2, }
B={[10x1 double],[12x1 double]}
How can i combine A & B to be only one cell C?
C : 1x5 cell class
C={cell_1, cell_2, cell_3, cell_4, cell_5 }
C={[2x1 double],[5x1 double],[3x1 double],[10x1 double],[12x1 double]}
Réponse acceptée
Plus de réponses (1)
KL
le 16 Déc 2017
c = [A B];
Catégories
En savoir plus sur Cell Arrays dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!