Adding matrix elements (entering matrices into other matrix)

my code:
A= zeros(3,3)
B = ones(2,2)
C = ones(2,2)
A(1:2,1:2) = B
A(2:3,2:3) = C
right now it gives: A=
1 1 0
1 1 1
0 1 1
I want the 2,2 position to add instead of simply replace. I want the final output to be:
A=
1 1 0
1 2 1
0 1 1
thanks

 採用された回答

Teja Muppirala
Teja Muppirala 2012 年 9 月 28 日

0 投票

How about:
A(2:3,2:3) = A(2:3,2:3) + C

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeMATLAB Mobile Fundamentals についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by