build a block matrix from matrices
4 views (last 30 days)
Show older comments
SALMA ALJAWI
on 7 Apr 2018
Commented: SALMA ALJAWI
on 8 Apr 2018
I am trying to build a block matrix from square diagonal matrices e.g. M{1,1},M{1,2},M{2,1}, and M{2,2} and I need to transfer them to a big matrix B such that:
B=[M{1,1} M{1,2}]
[M{2,1},M{2,2}];
each M has the same dimension.. I appreciate any help..
0 Comments
Accepted Answer
Walter Roberson
on 7 Apr 2018
B = cell2mat(M);
provided that the M are all the same size. (It will work in some other cases as well.)
More Answers (0)
See Also
Categories
Find more on Creating and Concatenating Matrices in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!