<div dir="ltr"><div class="gmail_default" style="font-size:small">Hi Lin,</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">I think I found the source of the problem.</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">Details:</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">Deep down in the SLATEC code that NCL's lspoly is based on, there's an EPS variable that's supposed to be an input variable. NCL internally sets this to 0.0 and passes it to the SLATEC routine.</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">It turns out that the SLATEC routine is changing this variable, even though it's supposed to be an input variable only.  This change gets propagated back to NCL, and then the next time the routine is called (in the case of where you pass the 2D arrays), EPS is now something slightly different, which, as you saw, produces different results.</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">The fix is relatively simple. I'm now making sure that NCL sets EPS to 0.0 every single time it calls the Fortran routine for an nD array.  The results I get back are now the same for the single lspoly call, versus the do loop call.</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">If you want to test this out, I can provide you with a new "ncl" executable to quickly try. If you let me know how you installed NCL before (and which file you got, if you downloaded it from the ESG), then I will provide you with a test "ncl" to try.</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">--Mary</div><div class="gmail_default" style="font-size:small"><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Jan 11, 2018 at 2:15 AM, 林祥 <span dir="ltr"><<a href="mailto:xianglin72@icloud.com" target="_blank">xianglin72@icloud.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word"><div>Hi, Mary</div><div><br></div><div>     Thank you for the reply. The HadCRUT4 data file have been attached this time , and you can also downloaded it</div><div>from the web page </div><div><a href="https://www.metoffice.gov.uk/hadobs/hadcrut4/data/current/time_series/HadCRUT.4.6.0.0.annual_ns_avg.txt" target="_blank">https://www.metoffice.gov.uk/<wbr>hadobs/hadcrut4/data/current/<wbr>time_series/HadCRUT.4.6.0.0.<wbr>annual_ns_avg.txt</a></div><div><br></div><div>Lin</div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div></div><br><div style="word-wrap:break-word"><br><div><blockquote type="cite"><div>在 2018年1月10日,下午11:25,Mary Haley <<a href="mailto:haley@ucar.edu" target="_blank">haley@ucar.edu</a>> 写道:</div><br class="m_4787664618174164611Apple-interchange-newline"><div><div dir="ltr" style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px"><div class="gmail_default" style="font-size:small;display:inline">​Lin,</div><div><div class="gmail_default" style="display:inline"><br></div></div><div><div class="gmail_default" style="display:inline">It seems like an issue, but I'm unable to run your script because I don't have the </div>HadCRUT4_ensemble.median_Ann_<wbr>Global.txt file?<div class="gmail_default" style="font-size:small;display:inline">​ Can you include this?</div></div><div><div class="gmail_default" style="font-size:small;display:inline"><br></div></div><div><div class="gmail_default" style="font-size:small;display:inline">Thanks,</div></div><div><div class="gmail_default" style="font-size:small;display:inline"><br></div></div><div><div class="gmail_default" style="font-size:small;display:inline">--Mary​</div><div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Jan 9, 2018 at 9:40 PM, 林祥 via ncl-talk<span class="m_4787664618174164611Apple-converted-space"> </span><span dir="ltr"><<a href="mailto:ncl-talk@ucar.edu" target="_blank">ncl-talk@ucar.edu</a>></span>wr<wbr>ote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div style="word-wrap:break-word">Hi, all   <div><br></div><div>     I just use the function “lspoly” to do polynomial fitting for some series, and met something strange .</div><div>Here below is a part of my scripts</div><div><br></div><div>…….</div><div><div>;  *****************************<wbr>******</div><div><div>   <span class="m_4787664618174164611Apple-converted-space"> </span>tstep = ispan(-maxlag,maxlag,1)                   ; define x axis</div></div><div><br></div><div>;  polynomial interpolation</div><div>   c       = lspoly(tstep,ccrtot,1,3)</div><div><br></div><div>   do k = 0,nd-1</div><div>     <span class="m_4787664618174164611Apple-converted-space"> </span>print(k + "  " + xid(k) )</div><div>     <span class="m_4787664618174164611Apple-converted-space"> </span>cc  = lspoly(tstep,ccrtot(k,:),1,3)</div><div>     <span class="m_4787664618174164611Apple-converted-space"> </span>print(c(k,0)  +  "  " + cc(0))</div><div>   end do   </div></div><div>;   ******************************<wbr>*****</div><div><br></div><div>Here below is a part of the corresponding output.</div><div>We  can see that for most of the series, the result is consistent between c(k,0) and cc(0),</div><div>however, for the other series , for example, the series with the id of “<font face="Menlo" size="3">CA002202200” or “CA002204100”,</font></div><div><font face="Menlo" size="3">there are difference between c(k,0) and cc(0).</font></div><div><font face="Menlo" size="3"><br></font></div><div><font face="Menlo" size="3">I am a little puzzled, why there are difference for the results of these series </font></div><div><font face="Menlo" size="3">when I change the procedure of calling function. And Which way should I choose </font></div><div><font face="Menlo" size="3">to got the correct polynomial fitting for all the series. (I also attached the </font></div><div><font face="Menlo" size="3">whole scripts and data files, Please check it.)</font></div><div><br></div><div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">  </span>0  CA002100700</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">    </span>0.239934  0.239934</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>1  CA002100880</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">    </span>0.380426  0.380426</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>2  CA002202200</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">    </span>0.380426  0.415303</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>3  CA002202400</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">    </span>0.328062  0.328062</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>4  CA002202800</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">    </span>0.233068  0.233068</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>5  CA002204100</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">    </span>0.233068  0.341998</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>6  CA002300500</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">    </span>0.233068  0.500022</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>7  CA002300902</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">    </span>0.233068  0.50636</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap"> </span>8  CA002301000</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">    </span>0.477951  0.477951</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>9  CA002400600</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">    </span>0.477951  0.482882</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>10  CA002401200</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.619622  0.619622</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>11  CA002403500</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.557136  0.557136</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>12  CAW00711410</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.448455  0.448455</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>13  CAW00719110</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.550481  0.550481</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>14  FI000000304</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.511676  0.511676</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>15  FI000002401</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.511676  0.525073</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>16  FI000007501</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.511676  0.609115</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>17  FIW00028050</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.511676  0.539957</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>18  FIW00028070</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.55604  0.55604</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">  </span>19  FIW00028230</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.571857  0.571857</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>20  FIW00028440</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.571857  0.660955</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>21  FIW00028450</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.614022  0.614022</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>22  FIW00028640</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.561348  0.561348</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>23  FIW00028690</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.566393  0.566393</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>24  FIW00028740</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.553346  0.553346</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>25  FIW00028750</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.507437  0.507437</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>26  FIW00028970</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.464211  0.464211</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>27  FIW00029100</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.530141  0.530141</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>28  FIW00029110</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.452507  0.452507</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>29  FIW00029130</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.452507  0.585739</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>30  FIW00029150</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.452507  0.481584</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>31  FIW00029170</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.488413  0.488413</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>32  FIW00029240</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.487094  0.487094</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>33  FIW00029290</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.523639  0.523639</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>34  FIW00029420</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.531159  0.531159</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>35  FIW00029440</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.471023  0.471023</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>36  FIW00029450</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.495872  0.495872</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>37  FIW00029470</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.327738  0.327738</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>38  FIW00029520</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.489859  0.489859</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>39  FIW00029580</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.467005  0.467005</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>40  FIW00029650</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.467005  0.493549</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>41  FIW00029660</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.467005  0.542049</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>42  FIW00029700</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.494033  0.494033</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>43  FIW00029720</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.407923  0.407923</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>44  FIW00029760</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.502163  0.502163</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>45  FOW00060110</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.502163  0.553852</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>46  GL000004360</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.672092  0.672092</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>47  GLW00042200</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.511462  0.511462</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>48  GLW00042600</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.373208  0.373208</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>49  GLW00042720</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.50284  0.50284</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">  </span>50  IC000004030</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.713142  0.713142</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>51  IC000004048</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.671089  0.671089</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>52  IC000004097</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.581897  0.581897</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>53  ICW00040050</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.603685  0.603685</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>54  NO000001026</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.602763  0.602763</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>55  NO000050540</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.513178  0.513178</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>56  NO000080700</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.513178  0.620591</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>57  NO000099710</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.612189  0.612189</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>58  NOE00105467</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.612189  0.645705</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>59  NOE00105477</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.693077  0.693077</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>60  NOE00105494</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.635884  0.635884</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>61  NOE00109394</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.562202  0.562202</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>62  NOE00109450</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.445114  0.445114</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>63  NOE00109459</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.445114  0.592654</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>64  NOE00109476</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.535851  0.535851</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>65  NOE00109485</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.535851  0.595297</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>66  NOE00109514</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.527777  0.527777</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>67  NOE00109604</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.527777  0.541985</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">        </span>68  NOE00109701</span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures">(0)<span class="m_4787664618174164611m_-7622312687287104280Apple-tab-span" style="white-space:pre-wrap">   </span>0.579877  0.579877</span></div></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><span style="font-variant-ligatures:no-common-ligatures"><br></span></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo">Thanks</div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><br></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><br></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"><br></div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo">Lin</div><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"></div></div><br><div style="word-wrap:break-word"><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"></div></div><br><div style="word-wrap:break-word"><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"></div></div><br><div style="word-wrap:break-word"><div style="margin:0px;font-size:16px;line-height:normal;font-family:Menlo"></div></div><br>______________________________<wbr>_________________<br>ncl-talk mailing list<br><a href="mailto:ncl-talk@ucar.edu" target="_blank">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/mailma<wbr>n/listinfo/ncl-talk</a></blockquote></div></div></div></div></div></div></blockquote></div><br></div><br></blockquote></div><br></div>