replace array value

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?

 Respuesta aceptada

Andrei Bobrov
Andrei Bobrov el 5 de Mayo de 2011

0 votos

A(A==6)=12

3 comentarios

Mohammad Golam Kibria
Mohammad Golam Kibria el 5 de Mayo de 2011
Actually I need to know replace a particular value of a particular column or row with a specific value. your code replace all values having 6 i.e if
A=[1 2 3; 4 6 6;7 6 7] then output is
A=[1 2 3; 4 12 12;7 12 7]
but output need is:
A=[1 2 3; 4 12 6;7 12 7]
Oleg Komarov
Oleg Komarov el 5 de Mayo de 2011
A(A(:,2)==6,2) = 12;
Mohammad Golam Kibria
Mohammad Golam Kibria el 8 de Mayo de 2011
Thanks

Iniciar sesión para comentar.

Más respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by