/[MITgcm]/MITgcm_contrib/osse/EnKF/field.m
ViewVC logotype

Annotation of /MITgcm_contrib/osse/EnKF/field.m

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 nx=10;ny=5;nz=5;
2     f=load('fields.dat');
3     size(f)
4     % in to out, bottom to top
5     for ijim=1:length(f(:,1))
6     it=0;
7     for i=1:nz
8     for j=1:ny
9     for k=1:nx
10     it=it+1;
11     state(k,j,i)=f(ijim,it);
12     end
13     end
14     end
15     toplot(:,:)=state(1,:,:);
16     figure(1);contour(toplot');drawnow
17     end

  ViewVC Help
Powered by ViewVC 1.1.22