I have four 1x50 matrices and I want to save them to one 4x50 matrix. How can I do this?
Afficher commentaires plus anciens
I have four 1x50 matrices and I want to save them to one 4x50 matrix. How can I do this?
2 commentaires
Jan
le 5 Fév 2013
@Teemu: I strongly suggest, that you ask the admins to restore your question. Otherwise there is the chance, that the contributors will ignore your questions in the future, because they could assume, that you are not serious. You find the address at the bottom of this page or you can ask randy Souza. Thanks.
Réponse acceptée
Plus de réponses (2)
Youssef Khmou
le 5 Fév 2013
Suppose your matrices are A,B,C,D all with size 1x50 :
M=zeros(4,50);
M(1,:)=A;
M(2,:)=B;
M(3,:)=C;
M(4,:)=D;
Ryan Livingston
le 5 Fév 2013
A = rand(1,50);
B = rand(1,50);
C = rand(1,50);
D = rand(1,50);
E = [A;B;C;D];
1 commentaire
Teemu
le 5 Fév 2013
Catégories
En savoir plus sur Resizing and Reshaping Matrices dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!