source: trunk/src/mode_sahelien/time_serie_histog_phase.m @ 45

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

parametrisation of composite_olr_phase....m; some unparametrized files in obsolete directory

File size: 2.0 KB
Line 
1function time_serie_histog_phase()
2% time_serie_histog_phase plot WTs distribution++
3%+
4% module
5% ======
6%
7% ++
8%
9% DESCRIPTION
10% ===========
11%
12% From ``occu.txt`` and ``phase[1-8].txt``, time_serie_histog_phase plots
13% for each WT and each phase distribution ++.
14% 2 Postscript files time_serie_type_tps_phase14.eps and
15% time_serie_type_tps_phase58.eps are written.
16%
17% EXAMPLES
18% ========
19%
20% ::
21%
22% >> time_serie_histog_phase();
23%
24% SEE ALSO
25% ========
26%
27% lagged_correlations_eof2_eof3_1030.m_
28%
29% .. _lagged_correlations_eof2_eof3_1030.m : lagged_correlations_eof2_eof3_1030.m.html
30%
31% composite_olr_phase.m_
32%
33% .. _composite_olr_phase.m : composite_olr_phase.m.html
34%
35% composite_olr_phase_num.m_
36%
37% .. _composite_olr_phase_num.m : composite_olr_phase_num.m.html
38%
39% time_serie_histog_phase_num.m_
40%
41% .. _time_serie_histog_phase_num.m : time_serie_histog_phase_num.m.html
42%
43% TODO
44% ====
45%
46% improve description
47%
48% improve file pb
49%
50% use return function
51%
52% EVOLUTIONS
53% ==========
54%
55% $Id$
56%
57% - fplod 2009-01-28T09:35:17Z aedon.locean-ipsl.upmc.fr (Darwin)
58%   
59%   * replace calls to time_serie_histog_phase[1-8] by calls to
60%     time_serie_histog_phase_num
61%   * add comments in ReST
62%   * EPS files in IRCAAM_OD
63%-
64
65global IRCAAM_OD;
66
67close all;
68figure(1);
69orient('landscape')
70phase_num=1;
71time_serie_histog_phase_num(phase_num)
72phase_num=phase_num+1;
73time_serie_histog_phase_num(phase_num)
74phase_num=phase_num+1;
75time_serie_histog_phase_num(phase_num)
76phase_num=phase_num+1;
77time_serie_histog_phase_num(phase_num)
78
79figure(2);
80orient('landscape')
81phase_num=phase_num+1;
82time_serie_histog_phase_num(phase_num)
83phase_num=phase_num+1;
84time_serie_histog_phase_num(phase_num)
85phase_num=phase_num+1;
86time_serie_histog_phase_num(phase_num)
87phase_num=phase_num+1;
88time_serie_histog_phase_num(phase_num)
89
90clear phase_num:
91
92figure(1);
93fullfilename=[IRCAAM_OD,'time_serie_type_tps_phase14.eps'];
94print('-depsc2',fullfilename);
95clear fullfilename;
96
97figure(2);
98fullfilename=[IRCAAM_OD,'time_serie_type_tps_phase58.eps'];
99print('-depsc2',fullfilename);
100clear fullfilename;
Note: See TracBrowser for help on using the repository browser.