help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Hold all


From: Luke M
Subject: Re: Hold all
Date: Tue, 6 Jul 2010 10:41:38 -0700 (PDT)

If all of your plots look like that and you aren't fiddling with the axes
properties (i.e. font, fontsize, position, etc.) on purpose, you might have
some settings that are causing trouble inadvertently.  You should be able to
work out a good axis position with some trial and error.  With your plot
open, try something like the following:

axis_pos = get(gca,'position');  % factory setting is [0.13 0.11 0.775
0.815]
set(gca,'position',axis_pos+[0 .05 0 -.08]);

This moves the bottom up 5% and the top down 3%.  The position vector is
[left right width height].  Check the .png version and repeat until you've
found a setting that works.  If you want, you can then go to your startup
file (~/.octaverc) and set the default axes position so you won't have to
modify your scripts directly:

set(0,'defaultaxesposition',[0.13 0.16 0.775 0.735]);
-- 
View this message in context: 
http://octave.1599824.n4.nabble.com/Hold-all-tp2277011p2279934.html
Sent from the Octave - General mailing list archive at Nabble.com.


reply via email to

[Prev in Thread] Current Thread [Next in Thread]