Documentation of plot_EOF1_EOF2_0-270mHC


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


Cross-Reference Information

This script calls

Listing of script plot_EOF1_EOF2_0-270mHC


clear
cd /home/disk/tao/dvimont/matlab/CSIRO/Thesis/Data
load RAW_detrend_L1-7_EOF_yr101-1000.mat; pcs3 = pcs;
load LP10_detrend_L1-7_yr101-1000.mat; pcs3 = pcs;
load HP10_detrend_L1-7_EOF_yr101-1000.mat; pcs3 = pcs;
lims = [-0.1 360 -90 90];
tim = 101:1000;
lev = 1:7;
[heat, lath, lonh, depth, middepth] = getheat(lev, tim, lims);
num = 2;
[hreg, hcoef] = regress_eof(heat, -1*pcs3(:,num), 0);
default_global; FRAME = [0 360 -90 90]; XAX = lonh; YAX = lath;
figure(1); figure_orient;
cint = 0.5;  clev = [-10:cint:-cint cint:cint:10];
sp(1);
  gcont(1e-8*hreg, clev);
  dc2(hreg)
  title(['EOF' num2str(num) ...
         ' of Unfiltered 0-270m Heat Content, '...
          num2str(round(per(num))) ...
         '% Variance Explained;  (Lamda = ' ...
          num2str(round(1e-16*lam(num))/100) ')']);
  xlabel(['Contour Interval:  ' num2str(cint) 'x10^8 J m^-^2']);
  ylabel(['EOF over [110E 60W 60S 60N]'])
sp(2);
  gcont(hcoef, [-1:.1:-.1 .1:.1:1]);
  dc2(hcoef)
  title(['Correlation Coefficient between Unfiltered PC' num2str(num) ...
         ' and Unfiltered 0-270m Heat Content'])
  xlabel(['Contour Interval:  ' num2str(0.1)]);
cd /home/disk/tao/dvimont/matlab/CSIRO/Thesis/Chap1/Plots