APPEND TWO CELL ARRAY

26 views (last 30 days)
Maurizio
Maurizio on 21 Dec 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?

Accepted Answer

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

More Answers (0)

Categories

Find more on Cell Arrays in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!