mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 02:02:07 +02:00

* common/o*: add Korean translation * odps-resource: update Korean translation (fix typo)
28 lines
545 B
Markdown
28 lines
545 B
Markdown
# octave
|
|
|
|
> 과학 계산을 위한 프로그래밍 언어.
|
|
> 더 많은 정보: <https://docs.octave.org/latest/Invoking-Octave-from-the-Command-Line.html>.
|
|
|
|
- 대화형 세션 시작:
|
|
|
|
`octave`
|
|
|
|
- 특정 스크립트 파일 실행:
|
|
|
|
`octave {{경로/대상/스크립트.m}}`
|
|
|
|
- 특정 인수를 사용하여 스크립트 파일 실행:
|
|
|
|
`octave {{경로/대상/스크립트.m}} {{인수1 인수2 ...}}`
|
|
|
|
- GUI를 사용하여 대화형 세션 시작:
|
|
|
|
`octave --gui`
|
|
|
|
- 도움말 표시:
|
|
|
|
`octave --help`
|
|
|
|
- 버전 표시:
|
|
|
|
`octave --version`
|