Documentation of get_zonal_wind


Global Index (short | long) | Local contents | Local Index (short | long)


Cross-Reference Information

This script calls

Listing of script get_zonal_wind


cd /home/disk/tao/data/nmc.reanalysis/monthly
range = [120 275 -90 90];
filin = 'uwnd.mon.mean.nc';
nc = netcdf(filin, 'nowrite');
  lat = nc{'lat'}(:);
  lon = nc{'lon'}(:);
  [xk, yk] = keep_var(range, lon, lat);
ntim = length(ctstar);
nlat = length(yk);
nlon = length(xk);
nlev = 17;
  ueq = zeros(ntim, nlev, nlat);
  for i = 37:444;
    i
    ueq(i-36,:,:) = mean(shiftdim(nc{'uwnd'}(i,:,yk,xk),2));
  end
nc = close(nc);
cd /home/disk/tao/dvimont/matlab/CCM/NMC_dat
rangeeq = range;
save u_zonal_eq_time.mat ueq rangeeq