Documentation of plot_pac


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


Help text

  EOF's

Cross-Reference Information

This script calls

Listing of script plot_pac



figure(1)
orient tall
subplot(2,1,1)
gcont(squeeze(reshape(temp(1,:),1,nypts,nxpts)),lims,[-5:.1:5])
dc
title('Figure 17')
xlabel('Contour Interval: 0.1 K / STD')
ylabel('EOF1 - 30.7% Var. Expl.')
subplot(2,1,2)
gcont(squeeze(reshape(temp(2,:),1,nypts,nxpts)),lims,[-5:.1:5])
dc
xlabel('Contour Interval: 0.1 K / STD')
ylabel('EOF2 - 7.3% Var. Expl.')

%  Principal Components

figure(2)
orient landscape
subplot(3,1,1)
plot(pc1(:,1))
axis([0 600 -3 3])
set(gca, 'XTick', [0:60:600]);
set(gca, 'XTickLabel', [0:15:150]);
set(gca, 'YTick', [-2:1:3])
grid on
title('Figure 18')
%ylabel('PC1 - 32.7% Var. Expl.')
ylabel('PC1 (STD)')
subplot(3,1,2)
plot(pc1(:,2))
axis([0 600 -2 4])
set(gca, 'XTick', [0:60:600]);
set(gca, 'XTickLabel', [0:15:150]);
set(gca, 'YTick', [-2:1:3])
grid on
%ylabel('PC2 - 11.6% Var. Expl.')
ylabel('PC2 (STD)')
grid on
subplot(3,1,3)
plot(pc1(:,3))
axis([0 600 -3 3])
set(gca, 'XTick', [0:60:600]);
set(gca, 'XTickLabel', [0:15:150]);
set(gca, 'YTick', [-2:1:3])
grid on
ylabel('PC3 (STD)')

%  Eigenvalues

figure(3)
orient tall
subplot(2,1,1)
gcont(squeeze(reshape(temp(3,:),1,nypts,nxpts)),lims,[-5:.1:5])
dc
title('Figure 19')
xlabel('Contour Interval: 0.1 K / STD')
ylabel('EOF3 - 6.2% Var. Expl.')
orient tall
subplot(2,1,2)
errorbar(1:10, lam(1:10), dlam(1:10), 'o');
grid
xlabel('Eigenvalues and Errorbars DOF = 12')
ylabel('Variance Explained')