|
From: | Ben Abbott |
Subject: | Re: gnuplot not working on Mac OSX 10.9.5 |
Date: | Mon, 06 Apr 2015 09:31:23 -0400 |
Ok. Octave is finding the version of gnuplot that is present in the bundle, but that version was not build to support native graphics. If you want to continue using gnuplot, then you can try to use gnuplot's qt or x11 terminal. close all setenv GNUTERM qt figure (1) clf () plot (rand (3)) title ('Qt') setenv GNUTERM x11 figure (2) clf () plot (rand (3)) title ('X11') Alternatively, you can use OpenGL for graphics. close all graphics_toolkit fltk plot (rand (3)) Ben |
[Prev in Thread] | Current Thread | [Next in Thread] |