Azzera filtri
Azzera filtri

Changing block row matrix to block column matrix?

3 visualizzazioni (ultimi 30 giorni)
I have a block matrix p = [A B C ...]. I want to change the matrix into a column block matrix without changing the elements of inner matrices (A, B, ...).
  4 Commenti
Walter Roberson
Walter Roberson il 12 Set 2018
Q = P;
P is already what you list as your desired output.

Accedi per commentare.

Risposta accettata

Andrei Bobrov
Andrei Bobrov il 12 Set 2018
Modificato: Andrei Bobrov il 13 Set 2018
[EDIT]
B = 2; % the number of blocks
[m,n] = size(c);
out = reshape(permute(reshape(c,m,n/B,[]),[1,3,2]),m*B,[]);
  4 Commenti
Andrei Bobrov
Andrei Bobrov il 13 Set 2018
Modificato: Andrei Bobrov il 13 Set 2018
Please see my answer after edit.

Accedi per commentare.

Più risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by