question about dim_variance_Wrap and dim_avg_Wrap

From: <caoyan_at_nyahnyahspammersnyahnyah>
Date: Thu, 3 Jul 2008 09:19:30 +0800

hi,Sir:

I use NCL build-in function(dim_avg_Wrap and dim_variance_Wrap) to calculate the average and spread,I think it should be same result with my own procedures, but it is not, the result from NCL and my procedure is different, so I want to kown why? which function I should use? The following is my procedure, It is simple:
    
  do i=1, num_x
      do j=1, num_y
          mean(i,j)=0.0 //average
          spd(i,j)=0.0 //spread
          do ienn=1,enn //number of ensemble members
            mean(i,j)=mean(i,j)+var(i,j,ienn)
          enddo
          mean(i,j)=mean(i,j)/(enn*1.0)
          do ienn=1,enn
            spd(i,j)=spd(i,j)+(var(i,j,ienn)-mean(i,j))*(var(i,j,ienn)-mean(i,j))
          enddo
          spd(i,j)=sqrt(spd(i,j)/(enn*1.0))
      enddo
  enddo

look forward your reply!
thanks!

sincerely

Cao Yan

_______________________________________________
ncl-talk mailing list
ncl-talk_at_ucar.edu
http://mailman.ucar.edu/mailman/listinfo/ncl-talk
Received on Wed Jul 02 2008 - 19:19:30 MDT

This archive was generated by hypermail 2.2.0 : Sun Jul 06 2008 - 17:04:16 MDT