Two matrices combination problem

Hi, I was wondering how to combine the following two matrices like this?and what is it is two big matrices?

回答 (1 件)

José-Luis
José-Luis 2016 年 6 月 30 日

0 投票

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;

この質問は閉じられています。

タグ

質問済み:

2016 年 6 月 30 日

閉鎖済み:

2021 年 8 月 20 日

Community Treasure Hunt

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

Start Hunting!

Translated by