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

2 Stimmen

vertcat
AC = vertcat(AA,AB);
To fix what you have just don't use {}
AC = [AA;AB];

Weitere Antworten (0)

Kategorien

Community Treasure Hunt

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

Start Hunting!

Translated by