Azzera filtri
Azzera filtri

how to write an if statement for a matrix with some NaN elements?

2 visualizzazioni (ultimi 30 giorni)
Hello all,
I have a matrix with some elements 0s or 1s and the rest are NaNs. I would like to write an if statement that ignores the NaN elements of the matrix. I have tried
if (a(:)==1 or a(:)==0)
------------
end
however, I am getting an error. I would appreciate if somebody can help me please. Thanks.
  7 Commenti

Accedi per commentare.

Risposte (1)

Walter Roberson
Walter Roberson il 5 Mag 2015
nonnanlocs = ~isnan(a);
a(nonnanlocs) = SomeFunction(a(nonnanlocs));

Community Treasure Hunt

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

Start Hunting!

Translated by