Files
cheatsheet-tldr/tldr/octave
2025-12-25 00:21:43 +00:00

34 lines
555 B
Plaintext

---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# octave
> A programming language for scientific computing.
> More information: <https://manned.org/octave>.
- 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`