BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
dvtarasov
Obsidian | Level 7

In IML, is there any way to find every occurrence of a certain number in a matrix and replace it with another number, and what is the syntax for this?

1 ACCEPTED SOLUTION

Accepted Solutions
Rick_SAS
SAS Super FREQ

The LOC function will find the location of the elements that you are looking for. Then you can use regular assignment to replace the numbers.  For example, to replace all values -99 with a missing value, do the following:

 

 

proc iml;
x = {1 -99   3 4,
     5   6 -99 8};
idx = loc(x = -99);   /* find location of elements */
x[idx] = .;           /* replace those elements */

View solution in original post

1 REPLY 1
Rick_SAS
SAS Super FREQ

The LOC function will find the location of the elements that you are looking for. Then you can use regular assignment to replace the numbers.  For example, to replace all values -99 with a missing value, do the following:

 

 

proc iml;
x = {1 -99   3 4,
     5   6 -99 8};
idx = loc(x = -99);   /* find location of elements */
x[idx] = .;           /* replace those elements */