Skip to content

Instantly share code, notes, and snippets.

@febeling
Created October 6, 2014 07:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save febeling/4021707692d82e870a28 to your computer and use it in GitHub Desktop.
Save febeling/4021707692d82e870a28 to your computer and use it in GitHub Desktop.
Plot from Octave 3.8.0-1.dmg installer CLI
This is free software; see the source code for copying conditions.
There is ABSOLUTELY NO WARRANTY; not even for MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. For details, type 'warranty'.
Octave was configured for "x86_64-apple-darwin13.0.0".
Additional information about Octave is available at http://www.octave.org.
Please contribute if you find this software useful.
For more information, visit http://www.octave.org/get-involved.html
Read http://www.octave.org/bugs.html to learn how to submit bug reports.
For information about changes from previous versions, type 'news'.
octave:1> plot(rand(3))
gnuplot> set terminal aqua enhanced title "Figure 1" size 560 420 font "*,6" dashlength 1
^
line 0: unknown or ambiguous terminal type; type just 'set terminal' for a list
octave:2> setenv GNUTERM qt
octave:3> graphics_toolkit gnuplot
octave:4> close all
octave:5> plot(rand(3))
Unknown or ambiguous terminal name 'qt'
gnuplot> set terminal aqua enhanced title "Figure 1" size 560 420 font "*,6" dashlength 1
^
line 0: unknown or ambiguous terminal type; type just 'set terminal' for a list
octave:6> setenv GNUTERM x11
octave:7> graphics_toolkit gnuplot
octave:8> close all
octave:9> plot(rand(3))
Unknown or ambiguous terminal name 'x11'
gnuplot> set terminal aqua enhanced title "Figure 1" size 560 420 font "*,6" dashlength 1
^
line 0: unknown or ambiguous terminal type; type just 'set terminal' for a list
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment