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

Last change on this file since 91 was 85, checked in by pinsard, 14 years ago

better representation of variable parts in filenames

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