/[MITgcm]/MITgcm/verification/lab_sea/matlab/wysiwyg.m
ViewVC logotype

Contents of /MITgcm/verification/lab_sea/matlab/wysiwyg.m

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.3 - (show annotations) (download)
Fri Mar 26 00:40:01 2004 UTC (20 years, 1 month ago) by cnh
Branch: MAIN
CVS Tags: HEAD
Changes since 1.2: +0 -0 lines
FILE REMOVED
These all came back and so we are deleting them again. Fingers crossed!

1 function wysiwyg
2 %WYSIWYG -- this function is called with no args and merely
3 % changes the size of the figure on the screen to equal
4 % the size of the figure that would be printed,
5 % according to the papersize attribute. Use this function
6 % to give a more accurate picture of what will be
7 % printed.
8 % Dan(K) Braithwaite, Dept. of Hydrology U.of.A 11/93
9
10 unis = get(gcf,'units');
11 ppos = get(gcf,'paperposition');
12 set(gcf,'units',get(gcf,'paperunits'));
13 pos = get(gcf,'position');
14 pos(3:4) = ppos(3:4);
15 set(gcf,'position',pos);
16 set(gcf,'units',unis);
17

  ViewVC Help
Powered by ViewVC 1.1.22