如何在Google Colab中运行Matlab .m文件

时间:2019-06-02 15:59:02

标签: python-2.7 matlab pytorch google-colaboratory torchvision

我目前正在尝试运行此仓库 https://github.com/Fanziapril/mvfnet 这需要一个步骤:

"Run the Matlab/ModelGeneration/ModelGenerate.m to generate the shape
model "Model_Shape.mat" and copy it to the Matlab/"

是否可以在 colab 中运行.m文件来做到这一点?

我还研究了oct2py库 https://blink1073.github.io/oct2py/, 但无法成功运行该文件。 我遵循了这个How to run a MATLAB code on Python

1 个答案:

答案 0 :(得分:0)

您需要先使用安装八度音

!apt install octave

然后,您可以使用以下命令运行m文件

!octave -W file.m

这里是minimal example