how can i concatenate matrices of diffrent data types and dimensions?
2 views (last 30 days)
Show older comments
concatenating matrices
1 Comment
the cyclist
on 18 May 2016
This isn't Twitter. Please describe what you are trying to do in some detail, to help us help you.
Answers (2)
Todd Leonhardt
on 18 May 2016
These are arrays that can contain data of varying types and sizes.
If you have two matrices, say M1 and M2, you can combine them into a cell array like so:
C = {M1 M2}
or
C = {M1; M2}
0 Comments
See Also
Categories
Find more on Creating and Concatenating Matrices 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!