Please help me how to describe a matrix in terms of smaller matrices.
3 ビュー (過去 30 日間)
古いコメントを表示
Temesgen Gelaw
2015 年 5 月 28 日
コメント済み: Temesgen Gelaw
2015 年 5 月 28 日
For example,
Let A=[1 2 3; 4 5 6; 7 8 9 ] and
A11 = [ 1 2; 4 5] , A12 = [ 2 3 ; 5 6] , A21 = [ 4 5 ; 7 8], A22 = [ 5 6; 8 9]. So I wanted to express A in terms of A11, A12, A21, and A22.
0 件のコメント
採用された回答
Michael Haderlein
2015 年 5 月 28 日
Is it sure they overlap by one line/column? Then it's just
A=[A11 A12(:,2:end);A21(2:end,:) A22(2:end,2:end)];
2 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Colormaps についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!