How to combine the matrices ?
Show older comments
I have matrices like 293*13, 392*13, 480*13. I want to take take each matrix to column and concatenate that column matrices into one matrix.
Please can anyone help me out with this ?
Answers (1)
One approach —
A = rand(293,13);
B = rand(392,13);
C = rand(480,13);
ABC = cat(1,A,B,C)
.
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!