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

2 Ansichten (letzte 30 Tage)
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

Akzeptierte Antwort

Navya Seelam
Navya Seelam am 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

Weitere Antworten (0)

Kategorien

Mehr zu Resizing and Reshaping Matrices finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by