Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

Two matrices combination problem

1 visualización (últimos 30 días)
Shican Liu
Shican Liu el 30 de Jun. de 2016
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
Hi, I was wondering how to combine the following two matrices like this?and what is it is two big matrices?

Respuestas (1)

José-Luis
José-Luis el 30 de Jun. de 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;

La pregunta está cerrada.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by