;+ ; Project : SDAC ; ; Name : SSW_CROSSCORR ; ; Purpose : This procedure computes a crosscorrelation function between two ; time series. ; ; Category : MATH ; ; Explanation : ; using the IDL function R=CORRELATE(xx,yy) ; R=TOTAL(xx*yy)/SQRT(TOTAL(xx^2)*TOTAL(yy^2)) ; r0 and r1 are two arrays of equal length ; ; Use : CROSSCORR, R0, R1, CC, II, NPIX ; crosscorrelation function CC(R0,R1) with time delay -NPIX