如何在 atom 中使用 MATLAB?

如何在 atom 中使用 MATLAB?

我希望能够使用该script包在 atom 中运行 matlab 脚本。

当我这样做时,出现以下错误。

MATLAB - Coins_Riddler.m:23
Unable to run

matlab
Did you start Atom from the command line?



 atom .

看起来 matlab 不在我的路径中。很多论坛都说要将其包含/Applications/MATLAB_R2016a.app/bin在路径中,但即使这样做也不起作用。matlab从终端调用会出现command not found错误,并且 atom 仍然无法读取我的 matlab 脚本。

答案1

脚本包中有一个grammars.coffee文件:

/.atom/packages/script/lib/grammars.coffee

搜索 MATLAB 部分并将命令从“matlab”更改为“/Applications/MATLAB_R2016a.app/bin/matlab”

command: "/Applications/MATLAB_R2016b.app/bin/matlab"

答案2

该插件已更新,不再有grammars.coffee。您应该将index.coffee/.atom/packages/script/lib/grammars/ 修改为:

command: '/Applications/MATLAB_R2018a.app/bin/matlab'

相关内容