<div dir="ltr"><div class="gmail_default" style="font-family:verdana,sans-serif">Take look at get1Dindex linked below.  It should do what you want. Below are a few quick example lines I threw together to get the matching indices for both A and B. </div><div class="gmail_default" style="font-family:verdana,sans-serif"><br></div><div class="gmail_default" style="font-family:verdana,sans-serif"><a href="https://www.ncl.ucar.edu/Document/Functions/Contributed/get1Dindex.shtml">https://www.ncl.ucar.edu/Document/Functions/Contributed/get1Dindex.shtml</a><br></div><div class="gmail_default" style="font-family:verdana,sans-serif"><br></div><div class="gmail_default" style="font-family:verdana,sans-serif"><br></div><div class="gmail_default" style="font-family:verdana,sans-serif"><br></div><div class="gmail_default" style="font-family:verdana,sans-serif">e.g.</div><div class="gmail_default" style="font-family:verdana,sans-serif"><p style="margin:0px;font-size:11px;font-family:Menlo">A = (/1990,1997,1999,2002,2005,2010/)</p>
<p style="margin:0px;font-size:11px;font-family:Menlo">B = (/1993,1997,2002,2004/) </p><div><p style="margin:0px;font-size:11px;font-family:Menlo"><br></p></div><div>A_ind = get1Dindex(A,B)        ;; array size B of where A is in B, Fill if not in B</div><div>A_ind_nm = A_ind(ind(.not.ismissing(A_ind))) ;; get rid of missing elements</div><div>Ca = A(A_ind_nm)                 ;; probably want an error check in case there are no overlaps. <br></div><div><br></div><div>      </div><div><div>B_ind = get1Dindex(B,A)        ;; array size B of where A is in B, Fill if not in B</div><div>B_ind_nm = B_ind(ind(.not.ismissing(B_ind))) ;; get rid of missing elements</div><div>Cb = B(B_ind_nm)                 ;; probably want an error check in case there are no overlaps. </div></div><div><br></div><div><br></div><div>Gd Luck. </div><div><br></div><div>Alan. </div><div><br></div></div></div><div class="gmail_extra"><br><div class="gmail_quote">On 10 June 2015 at 15:33, Xi Chang <span dir="ltr">&lt;<a href="mailto:xi.chang01@gmail.com" target="_blank">xi.chang01@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Hallo all,<div><br></div><div>Anyone can give me a hint how to get list of index for A which is associated with B,</div><div>for illustration:</div><div><br></div><div>file A containts :</div><div>-1990</div><div>-1997</div><div>-1999</div><div>-2002</div><div><br></div><div>file B</div><div>-1993</div><div>-1997</div><div>-2002</div><div>-2005</div><div><br></div><div>and in the end, will produce file C which only containts:</div><div>-1997</div><div>-2002</div><div><br></div><div>I cant do it mannually becaise the time series are too long..</div><div>any suggestion for a  clean alogirhtm?</div><div><br></div><div>Thanks</div><span class="HOEnZb"><font color="#888888"><div>Chang</div></font></span></div>
<br>_______________________________________________<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" target="_blank">http://mailman.ucar.edu/mailman/listinfo/ncl-talk</a><br>
<br></blockquote></div><br></div>