Replacing values in a Matrix

Hi,
I have a matrix similar to this:
A =[ ]
25 40 40 40 25 25 25 25 25 25
25 40 40 40 40 25 25 25 25 25
25 25 40 40 40 40 25 25 25 25
25 25 40 40 40 40 40 25 25 25
25 25 25 40 40 40 40 40 25 25
25 25 25 40 40 40 40 40 40 25
25 25 12 12 40 40 40 40 40 40
25 12 12 12 12 40 40 40 40 40
12 12 12 12 12 12 40 40 40 40
12 12 12 12 12 12 25 40 40 40
12 12 12 12 12 25 25 40 40 40
How do I write a script to replace all the 25's, with a certain value, and the 40's with another value and 12's with another value?
Thanks

Réponses (4)

dpb
dpb le 15 Août 2016

9 votes

A(A==yourvalue)=NewValue;

6 commentaires

Thorsten
Thorsten le 15 Août 2016
Modifié(e) : Thorsten le 15 Août 2016
This does work for a single value. But it fails if you want to swap values, like replacing all 25's with 12's and vice versa; or if some of the NewValues is the same as one of the old values and the order of replacements is not carefully chosen to be correct.
jony nasir
jony nasir le 23 Sep 2021
Thanks for the solution !!
Cory Cress
Cory Cress le 24 Sep 2021
This is great, thanks!
Yogya Chawla
Yogya Chawla le 4 Fév 2022
can you explain this syntax
dpb
dpb le 4 Fév 2022
Modifié(e) : dpb le 4 Fév 2022
A use of "logical indexing", one of the most powerful of MATLAB features, illustrated at <MatrixIndexingByLogicalExpression>.
A==yourvalue is a logical vector true where the values of A match yourvalue, false elsewhere. MATLAB then assigns the RHS to the true locations; ignoring the false positions.
It is the one way one can address an array with 0/1, but the values must be of class logical, not numeric.
Ioannis
Ioannis le 19 Déc 2024
MY GUY!!! Thanks, this helped me a lot with a satellite orbit determination assignment I got.

Connectez-vous pour commenter.

Thorsten
Thorsten le 15 Août 2016
Modifié(e) : Thorsten le 15 Août 2016

3 votes

[Aval, ~, indAval] = unique(A);
Define the new values. Values are ordered from the smallest value to replace with to the largest, i.e., to replace 12 with 41, 25 with 26 and 40 with 13 defise Avalnew as
Avalnew = [41; 26; 13];
Anew = Avalnew(indAval);
Anew = reshape(Anew, size(A));

1 commentaire

Javier Cabello
Javier Cabello le 17 Avr 2020
Much appreciated. Very flexible and smart solution!

Connectez-vous pour commenter.

BJ Anderson
BJ Anderson le 12 Mar 2019
Modifié(e) : BJ Anderson le 12 Mar 2019

3 votes

The real answer you're looking for is changem:
The syntax looks like this:
B = changem(A,[0 0],[9 8])
where the latter two arguments are vectors, wherein the all elements in the last vector are replaced with their counterparts in the first vector, within data array A.
Syntax
mapout = changem(Z,newcode,oldcode)
Description
mapout = changem(Z,newcode,oldcode) returns a data grid mapout identical to the input data grid, except that each element of Z with a value contained in the vector oldcode is replaced by the corresponding element of the vector newcode.
oldcode is 0 (scalar) by default, in which case newcode must be scalar. Otherwise, newcode and oldcode must be the same size.
Examples
Invent a map:
A = magic(3)
A =
8 1 6
3 5 7
4 9 2
Replace instances of 8 or 9 with 0s:
B = changem(A,[0 0],[9 8])
B =
0 1 6
3 5 7
4 0 2

2 commentaires

BJ Anderson
BJ Anderson le 12 Mar 2019
A quick update on changem:
Sadly, if one inspects the actual code within changem, it functions as a loop. While it is a handy one-liner, it does not have the time-savings of moving from a looped function to an matrix-operation function.
I like the convenience of this, but it's worth noting that it's part of the mapping toolbox.
which changem
/MATLAB/toolbox/map/map/changem.m

Connectez-vous pour commenter.

Stephen23
Stephen23 le 5 Nov 2023
A = [25,40,40,40,25,25,25,25,25,25; 25,40,40,40,40,25,25,25,25,25; 25,25,40,40,40,40,25,25,25,25; 25,25,40,40,40,40,40,25,25,25; 25,25,25,40,40,40,40,40,25,25; 25,25,25,40,40,40,40,40,40,25; 25,25,12,12,40,40,40,40,40,40; 25,12,12,12,12,40,40,40,40,40; 12,12,12,12,12,12,40,40,40,40; 12,12,12,12,12,12,25,40,40,40; 12,12,12,12,12,25,25,40,40,40]
A = 11×10
25 40 40 40 25 25 25 25 25 25 25 40 40 40 40 25 25 25 25 25 25 25 40 40 40 40 25 25 25 25 25 25 40 40 40 40 40 25 25 25 25 25 25 40 40 40 40 40 25 25 25 25 25 40 40 40 40 40 40 25 25 25 12 12 40 40 40 40 40 40 25 12 12 12 12 40 40 40 40 40 12 12 12 12 12 12 40 40 40 40 12 12 12 12 12 12 25 40 40 40
old = [12,25,40];
new = [99,23,42];
B = interp1(old,new,A)
B = 11×10
23 42 42 42 23 23 23 23 23 23 23 42 42 42 42 23 23 23 23 23 23 23 42 42 42 42 23 23 23 23 23 23 42 42 42 42 42 23 23 23 23 23 23 42 42 42 42 42 23 23 23 23 23 42 42 42 42 42 42 23 23 23 99 99 42 42 42 42 42 42 23 99 99 99 99 42 42 42 42 42 99 99 99 99 99 99 42 42 42 42 99 99 99 99 99 99 23 42 42 42

1 commentaire

Wilhelm
Wilhelm le 25 Sep 2025
Genius, this should be the accepted answer!

Connectez-vous pour commenter.

Catégories

En savoir plus sur Loops and Conditional Statements dans Centre d'aide et File Exchange

Question posée :

le 15 Août 2016

Commenté :

le 21 Jan 2026

Community Treasure Hunt

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

Start Hunting!

Translated by