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

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

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

Initial import of Stark code.

Line 
1 %
2 % FULLPAGE set up a fullpage plotting window, ~8.5 x ~11 inches
3 %
4 % FULLPAGE sets up a new figure that occupies ~8.5 x ~11 inches and
5 %          prints to a ~7.5 X ~10 inch area on the printed page.
6 %          This means the printed figure has 1 inch margins for
7 %          axis labels, titles, etc.         
8 %
9 %
10 % Calls: none
11 figure
12 %
13 % set figure (window) size to ~ letter size
14 %
15 set(gcf,'Units','inches')
16 set(gcf,'Position',[0.0 0.0 8.5 11.])
17 set(gcf,'PaperPosition',[0.5 0.5 7.5 10])
18 set(gcf,'Units','normalized')
19 set(gcf,'Tag','FullPage');
20 %
21 % set axes (picture) size; this axes will be
22 % overridden by the subplot command
23 %
24 set(gca,'Units','inches')
25 set(gca,'Position',[1 1 6.5 8])
26 set(gca,'Units','normalized')
27 wysiwyg;
28 %
29 %        Brian O. Blanton
30 %        Curr. in Marine Sciences
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.