help-octave
[Top][All Lists]
Advanced

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

Re: rlocus not working in fltk


From: Lukas Reichlin
Subject: Re: rlocus not working in fltk
Date: Sat, 22 Mar 2014 15:40:21 +0100

On 22.03.2014, at 14:33, Doug Stewart <address@hidden> wrote:

> On Sat, Mar 22, 2014 at 9:19 AM, Lukas Reichlin <address@hidden> wrote:
> On 22.03.2014, at 13:34, Doug Stewart <address@hidden> wrote:
> 
> > Lukas, I did some more tests and found that only 3) works with subplots!
> >
> > So for now I would suggest using 3) in rtlocus.
> > 1)
> > figure ("visible", "off");
> > ...
> > set (gcf, "visible", "on");
> > 2)
> > axes
> > set(gcf,""visible", "off");
> > ...
> > set (gcf, "visible", "on");
> > 3)
> > hplt = plot (args{:});
> > set (gcf,"visible","off");
> > ...
> > set (gcf, "visible", "on");
> >
> 
> 
> Do we need
> 
>     hplt = plot (args{:});
>     set (gcf,"visible","off");
>     hplt = plot (args{:});
> 
> ?
> 
> Lukas
> 
> 
> Yes  That is the only option that I know of that works for now.
> ie plot the data before we set visible to off and then set all the labels.
> -- 
> DAS
> 

I've pushed the following changeset:

https://bitbucket.org/paramaniac/control/commits/25af739fb3cb9cc04e7af66fb3fdb28ef9366757

Cheers,
Lukas



reply via email to

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