APPEND TWO CELL ARRAY

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?

 Accepted Answer

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

More Answers (0)

Categories

Community Treasure Hunt

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

Start Hunting!