LinuxCommandLibrary

octave

GNU Octave is a programming language for scientific computing.

TLDR

Start an interactive session

$ octave
copy


Execute a specific script file
$ octave [path/to/script.m]
copy


Execute a script file with specific arguments
$ octave [path/to/script.m] [argument1 argument2 ...]
copy


Start an interactive session with a GUI
$ octave --gui
copy


Display help
$ octave --help
copy


Display version
$ octave --version
copy

Copied to clipboard