NCCOOS Trac Projects: Top | Web | Platforms | Processing | Viz | Sprints | Sandbox | (Wind)

root/gliderproc/trunk/MATLAB/plots/landpage.m

Revision 495 (checked in by cbc, 12 years ago)

Initial import of Stark code.

Line 
1         function h=landpage;
2 %
3 % LANDPAGE set up a fullpage plotting window, ~11 x ~8.5 inches
4 %
5 % LANDPAGE sets up a new figure that occupies ~11 x ~8.5 inches
6 %          (landscape paper orientation) and prints to a ~10 X ~7.5
7 %          inch area on the printed page. This means the printed
8 %          figure has 1 inch margins for axis labels, titles, etc.         
9 %
10 % Calls: none
11 h=figure;
12 %
13 % set figure (window) size to ~ letter size
14 %
15 set(gcf,'Units','inches')
16 set(gcf,'Position',[0.0 0.5 11. 8.5])
17 set(gcf,'PaperPosition',[0.5 0.5 10 7.5])
18 set(gcf,'Units','normalized')
19 set(gcf,'PaperOrientation','landscape')
20 set(gcf,'Tag','LandPage');
21 %
22 % set axes (picture) size; this axes will be
23 % overridden by the subplot command
24 %
25 set(gca,'Units','inches')
26 set(gca,'Position',[1 1 9 6.5])
27 set(gca,'Units','normalized')
28 %
29 %        Brian O. Blanton
30 %        Curr. in Marine Science
31 %        15-1A Venable Hall
32 %        CB# 3300
33 %        Uni. of North Carolina
34 %        Chapel Hill, NC
35 %                 27599-3300
36 %
37 %        919-962-4466
38 %        blanton@marine.unc.edu
39 %
Note: See TracBrowser for help on using the browser.