APPEND TWO CELL ARRAY
98 views (last 30 days)
Show older comments
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?
0 Comments
Accepted Answer
Sean de Wolski
on 21 Dec 2011
vertcat
AC = vertcat(AA,AB);
To fix what you have just don't use {}
AC = [AA;AB];
0 Comments
More Answers (0)
See Also
Categories
Find more on Data Types 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!