[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Axis autoscaling works but gives wrong ans?
From: |
John W. Eaton |
Subject: |
Re: Axis autoscaling works but gives wrong ans? |
Date: |
Mon, 16 Feb 2004 18:38:37 -0600 |
On 23-Jan-2004, Dmitri A. Sergatskov <address@hidden> wrote:
| Henry F. Mollet wrote:
| > Axis autoscaling works but gives wrong ans?
| > Henry
|
| ....
|
| > octave:1> x=y = (0:10)';
| > octave:2> plot (x,y) % will use default axis = autoscaling
| > octave:3> axis ([-1, 11, -1,11])
| > octave:4> replot % will use axis ([-1, 11, -1,11])
|
| No. The whole idea of 'replot' is that it repeats previous plot command
| with the same axis settings etc...
No, it will simply pass a replot command to gnuplot. So if you change
some plot settings since the last plot command then issue a replot
command, the plot should be updated. That's what happens for me, and
is consistent with the behavior I see at the gnuplot command line for
something like
plot sin (x)
set xrange [-5:5]
replot
jwe
-------------------------------------------------------------
Octave is freely available under the terms of the GNU GPL.
Octave's home on the web: http://www.octave.org
How to fund new projects: http://www.octave.org/funding.html
Subscription information: http://www.octave.org/archive.html
-------------------------------------------------------------
- Re: Axis autoscaling works but gives wrong ans?,
John W. Eaton <=