How to make a matrix from several column vector
Afficher commentaires plus anciens
I have 3 colum vectors the first one with 1 value the second one with 10 values and the 3th one with 100 values. and i need to marge them into a matrix
EXP
A=
X1
B=
Y1
Y2
Y3
.
to 10
C=
Z1
Z2
Z3
Z4
to 100
MATRIX
X1 Y1 Z1
Y2 Z2
Y3 Z3
To 10 To 100
Thansk for the help
Luis
Réponses (1)
a = rand(1,1);
b = rand(10,1);
c = rand(100,1);
% you are not able to combine them into a matrix as you sepcified since they have different
% size.
% you can put them into a cell array instead:
d ={a, b, c}
d{1}
d{2}
Catégories
En savoir plus sur Creating and Concatenating Matrices dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!