1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.ko/common/octave.md

29 lines
545 B
Markdown
Raw Normal View History

# 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`