combining three matrices with different values to arrange one row after the other in the result matrix

1 visualizzazione (ultimi 30 giorni)
How to make the row arrangements or reshaping
A=[1,2,3;4,5,6;7,8,9];
B=[1,2,1;1,3,1;1,4,1];
C=[2,2,2;3,3,3;4,4,4];
Result =[1,2,3;1,2,1;2,2,2;4,5,6;1,3,1;3,3,3;7,8,9;1,4,1;4,4,4];
I need the solution to use for larger elemental matices like 13919*10 matrices
Kind Regards
Raja Sekhar

Risposta accettata

Navya Seelam
Navya Seelam il 3 Apr 2020
You can try the following
A=[1,2,3;4,5,6;7,8,9];
B=[1,2,1;1,3,1;1,4,1];
C=[2,2,2;3,3,3;4,4,4];
Result=[];
for i=1:3
Result=[Result;A(i,:);B(i,:);C(i,:)];
end

Più risposte (0)

Categorie

Scopri di più su Resizing and Reshaping Matrices 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