help-octave
[Top][All Lists]
Advanced

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

Re: plot turning black


From: Rick T
Subject: Re: plot turning black
Date: Sat, 4 May 2019 10:17:12 -0400

Try changing the graphics_toolkit option here are 3 options to try.

graphics_toolkit fltk
x = -10:0.1:10;
plot (x, sin (x));

graphics_toolkit qt 
x = -10:0.1:10;
plot (x, sin (x));

graphics_toolkit gnuplot
x = -10:0.1:10;
plot (x, sin (x));

On Sat, May 4, 2019 at 9:20 AM suvit verma <address@hidden> wrote:
Hey,
The plot of the function is not coming, it is just showing  black screen.


reply via email to

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