Contents

Ch19-开箱即用的 Octave/Matlab

19.1 Octave

相比于 Python、R、Fortran、Julia 等科学计算编程语言,Octave 是类 Matlab 的开源的、开箱即用的科学计算工具。

1
2
3
4
5
pacman -Ss octave
pacman -S mingw64/mingw-w64-x86_64-octave
octave
plot(linspace(1,10))
exit

注:Windows 环境下 Octave 生成 SVG 图像存在问题。

19.2 Matlab

Matlab 是商业的科学计算工具,提供了更多、更稳健的工具箱和功能。

1
matlab -nodesktop   # 无 GUI 模式,非常好用