Files
tldr/pages.zh/common/octave.md

509 B

Octave

一种用于科学计算的编程语言。 更多信息:https://docs.octave.org/latest/Invoking-Octave-from-the-Command-Line.html

  • 开始一个交互式会话:

octave

  • 执行特定的脚本文件:

octave {{path/to/script.m}}

  • 执行带有特定参数的脚本文件:

octave {{path/to/script.m}} {{argument1 argument2 ...}}

  • 启动带有 GUI 的交互式会话:

octave --gui

  • 显示帮助信息:

octave --help

  • 显示版本信息:

octave --version