2022-10-10 03:51:02 +01:00
|
|
|
# octave
|
|
|
|
|
2023-11-15 04:25:25 +00:00
|
|
|
> A programming language for scientific computing.
|
2022-10-10 03:51:02 +01:00
|
|
|
> 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`
|