Ignore:
Timestamp:
08/30/11 14:38:29 (13 years ago)
Author:
pinsard
Message:

suppress blank lines trailing blank

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/paper01/fig6/statistics.pro

    r94 r97  
    6060   cor, bias, std, rmsd 
    6161@cm_project 
    62 ;; mean1= mean of mooring variable      std1=std of mooring variable 
    63 ;; mean2= mean of erai variable         std2=std of erai variable 
    64 x=moor  
     62; mean1= mean of mooring variable      std1=std of mooring variable 
     63; mean2= mean of erai variable         std2=std of erai variable 
     64x=moor 
    6565y=erai 
    66 ind1=where(finite(x,/nan))  
     66ind1=where(finite(x,/nan)) 
    6767ind2=where(finite(y,/nan)) 
    6868ind=inter(ind1,ind2) 
    6969if (ind ne -1 ) then begin 
    70    x(ind)=!Values.f_nan  
     70   x(ind)=!Values.f_nan 
    7171   y(ind)=!Values.f_nan 
    7272endif 
    73  
     73; 
    7474ind=where(finite(x)) 
    75 x=x(ind)  
     75x=x(ind) 
    7676y=y(ind) 
    77  
     77; 
    7878nn=n_elements(ind) 
    79  
     79; 
    8080cor=correlate(x,y) 
    8181xxx=moment(x) 
    82 mean1=xxx(0)  
     82mean1=xxx(0) 
    8383std1=sqrt(xxx(1)) 
    8484xxx=moment(y) 
    85 mean2=xxx(0)  
     85mean2=xxx(0) 
    8686std2=sqrt(xxx(1)) 
    87 bias=mean2-mean1  
     87bias=mean2-mean1 
    8888std=std2/std1 
    8989rmsd=sqrt(total((x-y)*(x-y))/n_elements(x)) 
     90; 
    9091end 
Note: See TracChangeset for help on using the changeset viewer.