Ignore:
Timestamp:
12/13/07 17:22:35 (17 years ago)
Author:
pinsard
Message:

modification of headers : mainly blanks around = sign for keywords in declaration of function and pro

Location:
trunk/SRC/ToBeReviewed/STATISTICS
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/SRC/ToBeReviewed/STATISTICS/a_correlate2d.pro

    r325 r327  
    2828; 
    2929;- 
    30 FUNCTION auto_cov2d, x, lag, DOUBLE = double, ZERO2NAN = zero2nan 
     30FUNCTION auto_cov2d, x, lag, DOUBLE=double, ZERO2NAN=zero2nan 
    3131; 
    3232  compile_opt idl2, strictarrsubs 
     
    7777; 
    7878;- 
    79 FUNCTION a_correlate2d, x, lag, COVARIANCE = covariance, DOUBLE = double 
     79FUNCTION a_correlate2d, x, lag, COVARIANCE=covariance, DOUBLE=double 
    8080; 
    8181  compile_opt idl2, strictarrsubs 
  • trunk/SRC/ToBeReviewed/STATISTICS/a_timecorrelate.pro

    r325 r327  
    2828; 
    2929;- 
    30 FUNCTION timeauto_cov, x, m, nt, DOUBLE = double, ZERO2NAN = zero2nan 
     30FUNCTION timeauto_cov, x, m, nt, DOUBLE=double, ZERO2NAN=zero2nan 
    3131; 
    3232  compile_opt idl2, strictarrsubs 
     
    6262; 
    6363; @file_comments 
    64 ; Same function as A_CORRELATE but accept array (until 4 
     64; Same function as <proidl>A_CORRELATE</proidl> but accept array (until 4 
    6565; dimension) for input and do the autocorrelation or the 
    6666; autocovariance along the time dimension which must be the last 
     
    113113; 
    114114;- 
    115 FUNCTION a_timecorrelate, x, lag, COVARIANCE = covariance, DOUBLE = double 
     115FUNCTION a_timecorrelate, x, lag, COVARIANCE=covariance, DOUBLE=double 
    116116; 
    117117  compile_opt idl2, strictarrsubs 
    118118; 
    119119 
    120 ;Compute the sample-autocorrelation or autocovariance of (Xt, Xt+l) 
    121 ;as a function of the lag (l). 
     120; Compute the sample-autocorrelation or autocovariance of (Xt, Xt+l) 
     121; as a function of the lag (l). 
    122122 
    123123   ON_ERROR, 2 
  • trunk/SRC/ToBeReviewed/STATISTICS/c_timecorrelate.pro

    r325 r327  
    3030; 
    3131;- 
    32 FUNCTION timecross_cov, xd, yd, m, nt, ndim, DOUBLE = double, ZERO2NAN = zero2nan 
     32FUNCTION timecross_cov, xd, yd, m, nt, ndim, DOUBLE=double, ZERO2NAN=zero2nan 
    3333; 
    3434  compile_opt hidden 
     
    5959; This function computes the "time cross correlation" Pxy(L) or 
    6060; the "time cross covariance" between 2 arrays (this is some 
    61 ; kind of c_correlate but for multidimensional arrays) as a 
     61; kind of <proidl>C_CORRELATE</proidl> but for multidimensional arrays) as a 
    6262; function of the lag (L). 
    6363; 
     
    114114; 
    115115;- 
    116 FUNCTION c_timecorrelate, x, y, lag, COVARIANCE = covariance, DOUBLE = double 
     116FUNCTION c_timecorrelate, x, y, lag, COVARIANCE=covariance, DOUBLE=double 
    117117; 
    118118 
Note: See TracChangeset for help on using the changeset viewer.