No command MCC found

前提是你 提交于 2019-12-02 01:28:33

If you have the Matlab Compiler toolbox installed, you can either run the mcc.m function through the Matlab command line:

mcc -mv matlabfile.m

Or you can run the mcc binary directly in your shell:

/path/to/matlab/bin/mcc -mv matlabfile.m

Or you can add the folder containing the mcc binary to you PATH and then run it:

PATH="$PATH:/path/to/matlab/bin/"
mcc -mv matlabfile.m
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!