Info

此问题已关闭。 请重新打开它进行编辑或回答。

Two matrices combination problem

1 次查看(过去 30 天)
Shican Liu
Shican Liu 2016-6-30
关闭: MATLAB Answer Bot 2021-8-20
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
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;

此问题已关闭。

标签

Community Treasure Hunt

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

Start Hunting!

Translated by