1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-05 00:55:33 +02:00
tldr/pages/common/octave.md
2025-08-01 00:30:49 +03:00

28 lines
493 B
Markdown

# octave
> A programming language for scientific computing.
> More information: <https://docs.octave.org/latest/Command-Line-Options.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`