replace -28672 with NaN
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
mahesh chathuranga
am 21 Jul. 2014
Kommentiert: mahesh chathuranga
am 21 Jul. 2014
I have MODIS image, fill value is -28672(No data area). I want to replace those as NaN. why I am doing this is, I dont want to use those values to further calculations. I used this I(I==-28672)=NaN; but it not displayed as NaN. it displayed as 0. I dont know why it is not working.my image(I) is in type int16.
Akzeptierte Antwort
Robert Cumming
am 21 Jul. 2014
You have answered your own question - your data type is a int16. A NaN is a double
See:
class(NaN)
It is type double.
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu NaNs finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!