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