gui - octave ubuntu
¿Cómo hacer que Octave use "gnuplot" en lugar de "fltk" por defecto? (2)
Estoy usando Octave 3.8 en Ubuntu 13.10 y "fltk" para gráficos no funciona bien. Así que siempre cambio a "gnuplot" ordenando:
graphics_toolkit("gnuplot")
¿Cómo puedo configurar Octave para usar "gnuplot" de forma predeterminada?
Puede agregar esa línea al archivo .octaverc
. Si los archivos no existen, simplemente créelos en su directorio de inicio. Este archivo se ejecuta cada vez que inicia Octave a menos que pase la opción -f
o --norc
.
Puedes agregar muchas otras cosas a tu archivo .octaverc
. Como ejemplo, esto es parte de la mía:
## use man instead of help
function man (name = "help");
mlock (); # lock in memory so it''s not removed by clear all
help (char (name));
endfunction
## no octave-core
crash_dumps_octave_core (0);
EDITOR ("nano");
edit ("mode", "sync");
## pretty prompt
PS1 ("//[//033[01;31m//]//s://#> //[//033[0m//]");
## no > for multi-line input
PS2 ("");
## default image size to take the right half of the monitor
set (0,
"DefaultFigurePosition",
[get(0, "screensize")(3)/2 1 ...
get(0, "screensize")(3)/2 get(0, "screensize")(4)]
);
Usted agrega el comando a su archivo .octaverc
.
Para más información: http://www.gnu.org/software/octave/doc/interpreter/Startup-Files.html