/[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.2.4.1 - (show annotations) (download)
Sat Feb 15 12:40:31 2003 UTC (21 years, 3 months ago) by dimitri
Branch: ecco-branch
CVS Tags: ecco_c44_e27, icebear5, icebear4, icebear3, icebear2, ecco_c50_e33a, ecco_c50_e28, ecco_c50_e32, ecco_c50_e33, ecco_c50_e30, ecco_c50_e31, ecco_c51_e34, ecco_c50_e29, ecco_c51_e34e, ecco_c51_e34d, ecco_c51_e34f, ecco_c51_e34g, ecco_c51_e34a, ecco_c51_e34b, ecco_c51_e34c
Branch point for: icebear
Changes since 1.2: +0 -0 lines
o added verification/lab_sea as per release1_p12_pre

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