<div dir="ltr"><div class="gmail_default" style="font-size:small">Rashed,</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">For assorted reasons, you do NOT want to directly compare an array with its _Fillvalue.</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default">Please see this description in the NCL Reference Manual on the "if" statement and read the discussion about _FillValue:</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default"><a href="http://www.ncl.ucar.edu/Document/Manuals/Ref_Manual/NclStatements.shtml#If">http://www.ncl.ucar.edu/Document/Manuals/Ref_Manual/NclStatements.shtml#If</a><br></div><div class="gmail_default"><br></div><div class="gmail_default">You should also read the section on "Expressions and missing values" at:</div><div class="gmail_default"><br></div><div class="gmail_default"><a href="http://www.ncl.ucar.edu/Document/Manuals/Ref_Manual/NclExpressions.shtml#MissingValues">http://www.ncl.ucar.edu/Document/Manuals/Ref_Manual/NclExpressions.shtml#MissingValues</a><br></div><div class="gmail_default"><br></div><div class="gmail_default">The use of "ismissing" to check for missing values is the correct way to go.</div><div class="gmail_default"><br></div><div class="gmail_default">--Mary</div><div class="gmail_default"><br></div><div class="gmail_default"><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Sun, Nov 19, 2017 at 11:05 PM, Rashed Mahmood <span dir="ltr"><<a href="mailto:rashidcomsis@gmail.com" target="_blank">rashidcomsis@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div><div>Hi,<br></div>NCL 6.4:<br></div><div>I am not sure if that is the intended behaviour, a simple following command show the problem:<br></div>I do not why the command line: ncl 2> print(ind(a.eq.a@_FillValue)) would produce a missing while it's fine with: ncl 3> print(ind(ismissing(a))) <br><div><div><br><br>ncl 0> a = (/1,2,3,4,-999.000,6/)<br></div><div>ncl 1> a@_FillValue = -999.000<br>ncl 2> print(ind(a.eq.a@_FillValue))<br>(0)     -<a href="tel:(214)%20748-3647" value="+12147483647" target="_blank">2147483647</a><br>ncl 3> print(ind(ismissing(a)))      <br>(0)     4</div><div><br></div><div><br></div><div>If that is how it is supposed to, then should there be any warning/error message?</div><div><br></div><div>Thanks,</div><div>Rashed<br></div></div></div>
<br>______________________________<wbr>_________________<br>
ncl-talk mailing list<br>
<a href="mailto:ncl-talk@ucar.edu">ncl-talk@ucar.edu</a><br>
List instructions, subscriber options, unsubscribe:<br>
<a href="http://mailman.ucar.edu/mailman/listinfo/ncl-talk" rel="noreferrer" target="_blank">http://mailman.ucar.edu/<wbr>mailman/listinfo/ncl-talk</a><br>
<br></blockquote></div><br></div>