HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

octave — A programming language for scientific computing. More information: <https://manned.org/octave>.

Submitted by: @import:tldr-pages··
0
Viewed 0 times
scientificcommandoctavelanguagecomputingcliprogrammingfor

Problem

How to use the octave command: A programming language for scientific computing. More information: <https://manned.org/octave>.

Solution

octave — A programming language for scientific computing. More information: <https://manned.org/octave>.

Start an interactive session:
octave


Execute a specific script file:
octave {{path/to/script.m}}


Execute a script file with specific arguments:
octave {{path/to/script.m}} {{argument1 argument2 ...}}


Start an interactive session with a GUI:
octave --gui


Display help:
octave --help


Display version:
octave --version

Code Snippets

Start an interactive session

octave

Execute a specific script file

octave {{path/to/script.m}}

Execute a script file with specific arguments

octave {{path/to/script.m}} {{argument1 argument2 ...}}

Start an interactive session with a GUI

octave --gui

Display help

octave --help

Context

tldr-pages: common/octave

Revisions (0)

No revisions yet.