.octaverc: Difference between revisions

From Octave
Jump to navigation Jump to search
(Created page with "= .octaverc File = The .octaverc file is the octave startup file for Linux. It has basically the same role as startup.m in Matlab. Many basic settings can be put here. Some e...")
 
Line 3: Line 3:
The .octaverc file is the octave startup file for Linux. It has basically the same role as startup.m in Matlab. Many basic settings can be put here. Some examples are given below.
The .octaverc file is the octave startup file for Linux. It has basically the same role as startup.m in Matlab. Many basic settings can be put here. Some examples are given below.


edit mode async #
* edit mode async #
EDITOR('gvim > /dev/tty 2>&1 < /dev/tty %s') # use gvim as the default editor
* EDITOR('gvim > /dev/tty 2>&1 < /dev/tty %s') # use gvim as the default editor

Revision as of 14:39, 10 December 2015

.octaverc File

The .octaverc file is the octave startup file for Linux. It has basically the same role as startup.m in Matlab. Many basic settings can be put here. Some examples are given below.

  • edit mode async #
  • EDITOR('gvim > /dev/tty 2>&1 < /dev/tty %s') # use gvim as the default editor