help-octave
[Top][All Lists]
Advanced

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

Re: Trouble installing control toolbox


From: Benjamin Abbott
Subject: Re: Trouble installing control toolbox
Date: Thu, 13 Dec 2012 20:57:13 -0500

On Dec 13, 2012, at 8:22 PM, Michael Noone <address@hidden> wrote:

> Hi Alexander - we're getting somewhere now! I installed gnuplot. However, the 
> graph I'm getting is rather ugly... I tried switching to fltk and it did not 
> change the output.

Try ...

close all
graphics_toolkit fltk
plot (rand (3))

... And you'll either get an error or will get an fltk plot.

If you'd like to use gnuplot instead, try ...

close all
graphics_toolkit gnuplot
setenv GNUTERM x11
plot (rand (3))

... And you'll either get a gnuplot window or an error.

Ben


reply via email to

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