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

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

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


Revision 1.1 - (hide annotations) (download)
Tue May 4 18:19:35 2004 UTC (21 years, 2 months ago) by afe
Branch: MAIN
o EnKF stuff

1 afe 1.1 subroutine ranvar(xens,ave,n,nens,var)
2    
3     implicit none
4    
5     real, intent(in) :: xens(n,nens)
6     real, intent(in) :: ave(n)
7     real, intent(out) :: var(n)
8     real, rnens
9     integer i, nens, n
10    
11     rnens=nens
12     var=0.
13     do i=1,nens
14     var(:)=var(:)+(xens(:,i)-ave(:))*(xens(:,i)-ave(:))
15     enddo
16     var=(1./(rnens-1.))*var
17     end subroutine ranvar

  ViewVC Help
Powered by ViewVC 1.1.22