help-octave
[Top][All Lists]
Advanced

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

Re: Subplot bug ?


From: Shai Ayal
Subject: Re: Subplot bug ?
Date: Wed, 07 Sep 2005 14:55:32 +0300
User-agent: Mozilla Thunderbird 1.0 (X11/20041206)

try setting

automatic_replot=0;

and see if it solves it

Madhusudan Singh wrote:
Minimal example :

x=[1:1:10]; y=sin(x); z=cos(x);w=tan(x);v=1./sin(x);
xlabel('x');
subplot(2,2,1)
ylabel('y')
plot(x,y,'-@')
subplot(2,2,2)
ylabel('w')
plot(x,z,'-@')
subplot(2,2,3)
ylabel('w')
plot(x,w,'-@')
subplot(2,2,4)
ylabel('v')
plot(x,v,'-@')

As soon as a ylabel command is issued after each subplot, the previous plot is replicated in the new location. This creates a mess.



-------------------------------------------------------------
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
-------------------------------------------------------------






-------------------------------------------------------------
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
-------------------------------------------------------------



reply via email to

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