source: trunk/src/mode_sahelien/time_serie_ER_rossby_1030_complet.m @ 16

Last change on this file since 16 was 16, checked in by pinsard, 15 years ago

remove trailing blanks, split lines with multiple statements

File size: 1.5 KB
Line 
1%
2
3clear;
4close all;
5
6figure(1);
7orient('landscape')
8figure(2);
9orient('landscape')
10figure(3);
11orient('landscape')
12
13
14load eof_rossby_jjas_2006_1030.mat
15olr=olr';
16PC1=olr*C;
17
18time_serie_olr1=PC1(:,425);
19time_serie_olr2=PC1(:,424);
20
21for a=1:28;
22   if a<12;
23      figure(1);
24      subplot(4,3,a);
25   elseif a<23;
26      figure(2);
27      subplot(4,3,a-11);
28   else
29      figure(3);
30      subplot(4,3,a-22);
31   end
32   clear koro1
33   debut=(a-1)*122+1;
34   fin=a*122;
35   koro1=time_serie_olr1(debut:fin);
36   koro2=time_serie_olr2(debut:fin);
37   x=[1:122]';
38   aa=plot(x,-koro1,'r');
39   hold on;
40   bb=plot(x,-koro2,'k');
41%   cc=legend('EOF1','EOF2')
42%   set (cc,'fontsize',6)
43%   legend boxoff;
44   y=zeros(122,1);
45   plot(x,y,'k:');
46   if a==2;
47       text(0,183,'time series EOF1 and EOF2 OLR ER 10-30d');
48    elseif a==13;
49       text(0,183,'time series EOF1 and EOF2 OLR ER 10-30d');
50   elseif a==24;
51       text(0,183,'time series EOF1 and EOF2 OLR ER 10-30d');
52   end
53   title(a+1978,'FontSize',8);
54   set (gca,'tickDir','out');
55axis([1 122 -100 100]);
56
57
58set (gca,'YTick',[-100:20:100],'YTickLabel',[-100:20:100],'fontname','Arial','fontsize',6);
59set (gca,'XTick',[0:20:120],'XTickLabel',[0:20:120],'fontname','Arial','fontsize',6);
60end
61
62figure(1);
63print -depsc2 time_serie_eof_ER_10-30j_part1.eps;
64figure(2);
65print -depsc2 time_serie_eof_ER_10-30j_part2.eps;
66figure(3);
67print -depsc2 time_serie_eof_ER_10-30j_part3.eps;
Note: See TracBrowser for help on using the repository browser.