Info
Questa domanda è chiusa. Riaprila per modificarla o per rispondere.
Two matrices combination problem
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Hi, I was wondering how to combine the following two matrices like this?and what is it is two big matrices?

0 Commenti
Risposte (1)
José-Luis
il 30 Giu 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;
0 Commenti
Questa domanda è chiusa.
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!