how to replace the element in matrix?

430 views (last 30 days)
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

Accepted Answer

Yao Li
Yao Li on 16 May 2013
A(2,2)=12;
A(3,3)=13;
  2 Comments
deniz yükçeken
deniz yükçeken on 19 Mar 2021
how can i do it with a column
Burak Ahmet Celebi
Burak Ahmet Celebi on 31 Mar 2021
A(:,2)=12;
A(:,3)=13;
A = [ 1 12 13 7
3 12 13 8
8 12 13 6 ];

Sign in to comment.

More Answers (0)

Categories

Find more on Multidimensional Arrays in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!