Info
この質問は閉じられています。 編集または回答するには再度開いてください。
Two matrices combination problem
2 ビュー (過去 30 日間)
古いコメントを表示
Hi, I was wondering how to combine the following two matrices like this?and what is it is two big matrices?

0 件のコメント
回答 (1 件)
José-Luis
2016 年 6 月 30 日
A = ones(2);
B = reshape(1:9,3,3)';
C = zeros(size(A,1) + size(B,1));
C(1:2:end,1:2:end) = B;
C(2:2:end,2:2:end) = A;
0 件のコメント
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!