Reputation: 257
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
How can i correct it?
Upvotes: 10
Views: 7667
Reputation: 404
Had the same issue. graphics_toolkit("gnuplot")
was what worked for me. Both qt
and fltk
returned blank screens.
Upvotes: 0
Reputation: 201
change your graphics_toolkit
graphics_toolkit("gnuplot")
Or
graphics_toolkit("qt")
Or
graphics_toolkit("fltk")
Upvotes: 20