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 14:19:27 +0100

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



reply via email to

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