how to replace the element in matrix?

i have a matrix
if true
A = [ 1 5 9 7
3 5 7 8
8 2 4 6 ];
end
now i want to put number 12 in the location of A(2,2)
also i want to put number 13 in the location of A(3,3)
how can i do please help me

 採用された回答

Yao Li
Yao Li 2013 年 5 月 16 日

14 投票

A(2,2)=12;
A(3,3)=13;

2 件のコメント

deniz yükçeken
deniz yükçeken 2021 年 3 月 19 日
how can i do it with a column
Burak Ahmet Celebi
Burak Ahmet Celebi 2021 年 3 月 31 日
A(:,2)=12;
A(:,3)=13;
A = [ 1 12 13 7
3 12 13 8
8 12 13 6 ];

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeResizing and Reshaping Matrices についてさらに検索

製品

質問済み:

win
2013 年 5 月 16 日

コメント済み:

2021 年 3 月 31 日

Community Treasure Hunt

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

Start Hunting!

Translated by