Clear Filters
Clear Filters

Changing block row matrix to block column matrix?

3 views (last 30 days)
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 Comments
Walter Roberson
Walter Roberson on 12 Sep 2018
Q = P;
P is already what you list as your desired output.

Sign in to comment.

Accepted Answer

Andrei Bobrov
Andrei Bobrov on 12 Sep 2018
Edited: Andrei Bobrov on 13 Sep 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 Comments
Andrei Bobrov
Andrei Bobrov on 13 Sep 2018
Edited: Andrei Bobrov on 13 Sep 2018
Please see my answer after edit.

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!