使用软件中心安装 MATLAB

使用软件中心安装 MATLAB

我尝试安装MATLAB在 Ubuntu 14.04 (Trusty Tahr) 上使用软件中心,但我无法在其中嵌入 MATLAB。如何使用软件中心

答案1

软件中心中名为“Matlab”的软件包实际上只是一个集成软件包(名为 matlab-support)。如软件包描述(apt-cache show matlab-support)中所述:

 This package does not provide MATLAB. Instead, it configures an
 existing MATLAB installation to integrate more comfortably in
 a Debian installation.
 .
 Currently it provides /usr/bin/matlab through the alternatives
 system, offers to work around incompatibilities between the libraries
 bundled with MATLAB and system libraries, and provides a helper
 utility meant to be used by other packages to compile MEX extensions.
 .
 Install this if you would like your MATLAB installation to behave more
 like an ordinary Debian package. Other packages may depend on
 this one if they install MATLAB code, for example in order to
 compile MEX extensions.

您首先需要获取自己的 Linux 版 Matlab 许可副本。

答案2

MATLAB 不是免费的,并且 Linux 发行版通常不包含有限的演示,因为它需要捆绑大量工作。

如果你想尝试一些免费、开放且类似 MATLAB 的东西,可以尝试八度或者qtocave(Octave + GUI)。它使用与 MATLAB 相同的方言,基础数学和图形包与 MATLAB 相同。但它缺少扩展。

如果你从事统计学,那么另一个很酷的工具是IPython 笔记本,发现于 http://ipython.org/ipython-doc/dev/notebook/。这很棒,因为你一举两得。它既是数学/统计的好工具,又是受人尊敬和使用的编程语言。

相关内容