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: Doug Stewart
Subject: Re: rlocus not working in fltk
Date: Sat, 22 Mar 2014 09:33:24 -0400




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.
--
DASCertificate for 206392


reply via email to

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