/[MITgcm]/MITgcm_contrib/osse/EnKF/distsub.F
ViewVC logotype

Annotation of /MITgcm_contrib/osse/EnKF/distsub.F

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.2 - (hide annotations) (download)
Wed May 19 15:43:10 2004 UTC (21 years, 2 months ago) by afe
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +0 -0 lines
FILE REMOVED
o refining osse setup

1 afe 1.1 real function distsub(a,b,n)
2    
3     implicit none
4    
5     integer i, n
6     real*8 a(n), b(n)
7    
8     distsub=(a(1)-b(1))**2
9     do i=2,n
10     distsub=distsub+(a(i)-b(i))**2
11     enddo
12     distsub=sqrt(distsub)
13    
14     return
15     end
16    
17    

  ViewVC Help
Powered by ViewVC 1.1.22