How to use "nan"
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
I want to get rid of the color by using "nan" ,marked on the map.
The code is as follows.
2 Kommentare
John D'Errico
am 26 Mär. 2021
What does getting rid of a color mean here? Are you asking to replace those pixels with new ones that are blue, and look smoothly like the rest of the turbulent region in that area? Or do you just want to have a white area in that region, so essentially nothing plotted?
Antworten (2)
KSSV
am 26 Mär. 2021
Bearbeitet: KSSV
am 26 Mär. 2021
LEt's say you want to change the values beyond a given value val (a number) into NaN. Use:
u(u>val) = NaN ;
isnan is afunction used to check whether a value is nan or not. You can check after replacing values with NaN using:
u(isnan(u))
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!