Azzera filtri
Azzera filtri

Elegant way of storing multiple vectors int to a single matrix in column wise

5 visualizzazioni (ultimi 30 giorni)
Eg 3 vectors A=[1,2,3 ] B=[4 5 6] C=[7 8 9]
Output :
Matrix M=( 1 2 3; 4 5 6; 7 8 90)
How to convert muliple array into single matrix form.
Thank you

Risposte (1)

Santos García Rosado
Santos García Rosado il 7 Apr 2021
Matrix = cat(1,A,B,C)

Categorie

Scopri di più su Multidimensional Arrays in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by