Documentation of plot_ct_index_quick


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


Cross-Reference Information

This script calls

Listing of script plot_ct_index_quick


data
load seas_ct2.mat
for i=1:6;
  subplot(6,1,i);
  ind = 600*(i-1)+[1:600];
  plot(ind, ct2(ind))
  axis([min(ind)-1 max(ind)+1 -1 1]);
  set(gca, 'XTick', min(ind-1):40:max(ind), 'XTickLabel', ...
  	 [(min(ind-1)/4):10:(max(ind)/4)], 'YTick', -1:.5:1)
  grid on
end