Clear Filters
Clear Filters

Info

This question is closed. Reopen it to edit or answer.

Two matrices combination problem

1 view (last 30 days)
Shican Liu
Shican Liu on 30 Jun 2016
Closed: MATLAB Answer Bot on 20 Aug 2021
Hi, I was wondering how to combine the following two matrices like this?and what is it is two big matrices?

Answers (1)

José-Luis
José-Luis on 30 Jun 2016
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;

This question is closed.

Tags

Community Treasure Hunt

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

Start Hunting!