help-octave
[Top][All Lists]
Advanced

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

Re: Multiplot Clearing Problem


From: Dmitri A. Sergatskov
Subject: Re: Multiplot Clearing Problem
Date: Tue, 13 Jul 2004 11:35:08 -0600
User-agent: Mozilla Thunderbird 0.7.1 (X11/20040626)

Henry F. Mollet wrote:

...


As each subplot requires "hold on" to produce the triangle
(blue) and one contour (grey), I have to "clear" between
each subplot or the "hold on" will apply to subsequent subplots.
I do this by plotting to a "dummy" subplot:
subplot (2,3,6) % clearing patch using different cols of Results matrix
plot (Results(1:1,3),Results(1:1,6),"x").


May be I do not quite understand what you are trying to do, but in my
(limited) experience with multiplot you really need to use a single
line plot command, e.g.:

plot(x1,y1,"x;Label1;",x2,y2,"o;Label2;",x3,y3,"-b;;", x4,y4,"-r;;")


Henry


Regards,

Dmitri.



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