build a block matrix from matrices
4 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
採用された回答
Walter Roberson
2018 年 4 月 7 日
B = cell2mat(M);
provided that the M are all the same size. (It will work in some other cases as well.)
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Creating and Concatenating Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!