In a matrix column/array, how can I turn all numbers higher than a certain value into nans?

1 visualización (últimos 30 días)
I have a 1 D array (column) of measured data (that I ultimately append to a matrix). I want to plot the data.
There are numbers higher than "1.0" in the array and they mean that there was a problem with a measurement. I need to turn any numbers higher than 1.0 into nans. Does anyone know how to do this? Thank you for any advice.

Respuesta aceptada

Abdolkarim Mohammadi
Abdolkarim Mohammadi el 2 de Sept. de 2020
Editada: Abdolkarim Mohammadi el 2 de Sept. de 2020
The best way is to use logical indexing.
X(X>1) = NaN;
Read this page, especially Indexing with Logical Values:
  1 comentario
Srh Fwl
Srh Fwl el 2 de Sept. de 2020
Thank you very much! Really appreciate the link to the documentation page. I had no idea what terms to search.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Matrix Indexing en Help Center y File Exchange.

Productos


Versión

R2016b

Community Treasure Hunt

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

Start Hunting!

Translated by