help-octave
[Top][All Lists]
Advanced

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

Re: 2 Y-axes in the same figure


From: Michael Goffioul
Subject: Re: 2 Y-axes in the same figure
Date: Fri, 21 Oct 2011 14:03:00 +0100

On Fri, Oct 21, 2011 at 1:55 PM, Eduardo J. Adam <address@hidden> wrote:
> Thanks Liam,
> 1. One of my problem is the command set. I was reading about that and the
> syntaxes is,
>
> set(h,attr,val)
>
> I'm looking for a a list or table with different attribute and values for
> this command and I don't find it.
> Did you know a web page or whatever for that?

http://www.gnu.org/software/octave/doc/interpreter/Graphics-Object-Properties.html#Graphics-Object-Properties

> 2. Other problem is the command plotyy. I think but I'm not sure that, it is
> impossible with this command to do multiple plot in the same figure. For
> example command plot with hold on you can draw a new figure over the
> previous figure. I think this option is not possible with plotyy. That is,
>
> plotyy
> hold on
> plotyy
>
> dosn't work.

The following works in dev branch of octave:

h = plotyy(...)
hold (h(1), "on")
hold (h(2), "on")
plotyy(...)

Michael.


reply via email to

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