Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Plot generated in Octave is fully black

I am using octave 4.2.1 on fedora 26.

(I recently upgraded from fedora 25 to 26 and through this octave was upgraded from 4.0.3 to 4.2.1)

Now when I plot a figure like plot(x)the figure that comes up is just a black image. Before the up gradation i didn't had this problem. I am attaching a snapshot also

enter image description here.

How can i correct it?

like image 628
srk_cb Avatar asked Oct 02 '17 17:10

srk_cb


1 Answers

change your graphics_toolkit

graphics_toolkit("gnuplot")

Or

graphics_toolkit("qt")

Or

graphics_toolkit("fltk")
like image 163
Brad Michel Barrera Navarro Avatar answered Sep 22 '22 14:09

Brad Michel Barrera Navarro