1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 09:42:07 +02:00
tldr/pages/common/octave.md
Lena 0fddee2272
pages/*: reword descriptions to comply with the style guide (#11507)
* pages/*: reword descriptions to comply with the style guide

---------

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2023-11-15 09:55:25 +05:30

510 B

octave

A programming language for scientific computing. More information: https://docs.octave.org/latest/Invoking-Octave-from-the-Command-Line.html.

  • 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