Combining matrices, adding two matrices in into a bigger one.

2 ビュー (過去 30 日間)
mohsen
mohsen 2016 年 5 月 3 日
回答済み: Fangjun Jiang 2016 年 5 月 3 日
Ke1 = [ 3 3 -3 3; 3 4 -3 2; -3 -3 3 -3; 3 2 -3 4];
Ke2 = [ 6 3 -6 3; 3 2 -3 1; -6 -3 6 -3; 3 1 -3 2];
Kg = zeros(6);
Kg(1:4, 1:4) = Ke1
I also want to add Ke2 to Kg in (3:6,3:6) where they overlap in the middle but I don't know how.

採用された回答

Fangjun Jiang
Fangjun Jiang 2016 年 5 月 3 日
Kg(3:6,3:6)=Kg(3:6,3:6)+Ke2

その他の回答 (0 件)

Community Treasure Hunt

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

Start Hunting!

Translated by