Effacer les filtres
Effacer les filtres

APPEND TWO CELL ARRAY

17 vues (au cours des 30 derniers jours)
Maurizio
Maurizio le 21 Déc 2011
HI I HAVE TWO ARRAY {AA}=<24X20> AND {AB}=<47X20>. iF I USE AC={AA;AB} MATLAB CREATE TWO CELL? HOW CAN I APPEND AB AFTER AA IN A SINGLE CELL ARRAY?

Réponse acceptée

Sean de Wolski
Sean de Wolski le 21 Déc 2011
vertcat
AC = vertcat(AA,AB);
To fix what you have just don't use {}
AC = [AA;AB];

Plus de réponses (0)

Catégories

En savoir plus sur Cell Arrays dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by