2025-03-14 21:59:59 -06:00
|
|
|
# octave
|
|
|
|
|
|
|
|
|
|
> A programming language for scientific computing.
|
2025-09-14 18:48:49 -06:00
|
|
|
> More information: <https://docs.octave.org/latest/Command-Line-Options.html>.
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- 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`
|