replace array value

2 views (last 30 days)
Mohammad Golam Kibria
Mohammad Golam Kibria on 5 May 2011
I have a matrix
A=[1 2 3; 4 6 6;7 7 7]
I want to replace all 6 in the second column with 12 i.e A should be
as follows: A=[1 2 3; 4 12 12;7 7 7]
How to do that easily?

Accepted Answer

Andrei Bobrov
Andrei Bobrov on 5 May 2011
  3 Comments
Oleg Komarov
Oleg Komarov on 5 May 2011
A(A(:,2)==6,2) = 12;

Sign in to comment.

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!