Filter löschen
Filter löschen

APPEND TWO CELL ARRAY

17 Ansichten (letzte 30 Tage)
Maurizio
Maurizio am 21 Dez. 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?

Akzeptierte Antwort

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

Weitere Antworten (0)

Kategorien

Mehr zu Cell Arrays finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by