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

2 次查看(过去 30 天)
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

采纳的回答

Navya Seelam
Navya Seelam 2020-4-3
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

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Resizing and Reshaping Matrices 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by