mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-04 22:55:44 +02:00
octave: add page (#8593)
This commit is contained in:
parent
61c3c7e600
commit
8f9d62e8ea
1 changed files with 28 additions and 0 deletions
28
pages/common/octave.md
Normal file
28
pages/common/octave.md
Normal file
|
@ -0,0 +1,28 @@
|
|||
# octave
|
||||
|
||||
> GNU Octave is 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`
|
Loading…
Add table
Reference in a new issue