source: trunk/PROGRAMMES/initfig.m @ 5

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

initfig : header and octave warning

  • Property svn:keywords set to Id
File size: 955 bytes
Line 
1%INITFIG  initialise qqes caractéristiques d'un dessin
2
3%+
4% module
5% ======
6%
7% ``initfig``
8%
9% DESCRIPTION
10% ===========
11%
12% ++
13%
14% ``initfig`` initialise qqes caractéristiques d'un dessin :
15%   - la taille A4
16%
17% EXAMPLES
18% ========
19%
20% ::
21%
22% >> tpacpandreg_startup
23% >> initfig
24%
25% SEE ALSO
26% ========
27%
28% tpacpandreg_startup.m_
29%
30% .. _tpacpandreg_startup.m : tpacpandreg_startup.m.html
31%
32% TODO
33% ====
34%
35% improve description
36%
37% check in octave next releases ( > 3.0.2) new feature
38%
39% EVOLUTIONS
40% ==========
41%
42% $Id$
43%
44% - fplod 2009-08-17T12:39:51Z aedon.locean-ipsl.upmc.fr (Darwin)
45%
46%   * add header
47%   * add octave warning
48%
49%-
50%
51if (run_octave == 0)
52 set(gcf,'Units','normalized');
53 set(gcf,'position',[0.1 0.08,0.5,0.8])
54 set(gcf,'PaperType', 'a4letter');
55 set(gcf,'PaperUnits','normalized');
56 set(gcf,'PaperPosition',[0,0,1,1]);
57else
58 warning('www : octave can not initialise Units, position, PaperType PaperUnits PaperPosition');
59end
60
Note: See TracBrowser for help on using the repository browser.