Global Index (short | long) | Local contents | Local Index (short | long)
This script calls | |
---|---|
clear cd /home/disk/tao/dvimont/matlab/CSIRO/Thesis/Data load RAW_detrend_L1-7_EOF_yr101-1000.mat; pcsr = pcs; lamr = lam; load HP10_detrend_L1-7_EOF_yr101-1000.mat; pcsh = pcs; lamh = lam; load LP10_detrend_L1-7_yr101-1000.mat; pcsl = pcs; laml = lam; bins = [-4.5:.25:4.5]; clear nr nl nh for num = 1:2; nr(num,:) = hist(pcsr(:,num), bins); nl(num,:) = hist(pcsl(:,num), bins); nh(num,:) = hist(pcsh(:,num), bins); end figure(1); figure_landscape; subplot(3,2,1); bar(bins, nr(1,:)); subplot(3,2,2); bar(bins, nr(2,:)); subplot(3,2,3); bar(bins, nl(1,:)); subplot(3,2,4); bar(bins, nl(2,:)); subplot(3,2,5); bar(bins, nh(1,:)); subplot(3,2,6); bar(bins, nh(2,:)); for i = 1:6; subplot(3,2,i); axis([-4.25 4.25 0 125]); grid on; end subplot(3,2,1); ylabel('RAW Data'); title('PC1, 0-270m HC'); subplot(3,2,2); title('PC2, 0-270m HC'); subplot(3,2,3); ylabel('LP10 Data'); subplot(3,2,5) ylabel('HP10 Data'); cd /home/disk/tao/dvimont/matlab/CSIRO/Thesis/Chap1/Plots