How to combine the matrices ?
Ältere Kommentare anzeigen
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 ?
Antworten (1)
One approach —
A = rand(293,13);
B = rand(392,13);
C = rand(480,13);
ABC = cat(1,A,B,C)
.
Kategorien
Mehr zu Creating and Concatenating Matrices finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!