Replace numbers without using find()

I have a code that looks like this: A = randi([100,200],1000,1000)
Is there a code I can use that will replace all numbers between 150 and 200 with Nan without using the find ()?

 Respuesta aceptada

Adam Danz
Adam Danz el 11 de Oct. de 2019
Editada: Adam Danz el 11 de Oct. de 2019
A(A>150 & A<200) = NaN;
I interpret "between" as not inclusive. If you want inclusive,
A(A>=150 & A<=200) = NaN;

Más respuestas (0)

Categorías

Etiquetas

Preguntada:

el 11 de Oct. de 2019

Editada:

el 11 de Oct. de 2019

Community Treasure Hunt

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

Start Hunting!

Translated by