在python中調(diào)用MATLAB的方法

Step 1: install MATLAB Engine API for Python
官網(wǎng)給出的方案:
install MATLAB Engine API for Python (http://ww2.mathworks.cn/help/matlab/matlab_external/install-the-matlab-engine-for-python.html?ue)
在MATLAB中輸入:
matlabroot
得到返回的位置
打開anaconda,輸入下面語句進行安裝
cd matlabroot\extern\engines\python
python setup.py install
注意要將matlabroot替換為之前返回的位置
Step 2: Call User Script and Function from Python
官網(wǎng)給出的方案:
Call User Script and Function from Python (http://cn.mathworks.com/help/matlab/matlab_external/call-user-script-and-function-from-python.html)

.m腳本的調(diào)用
.m文件與.py文件需要放在同一目錄下。在test.m文件中輸入:
b=2;
h=3;
a=b*h
在H.py文件中輸入:
import matlab.engine
eng = matlab.engine.start_matlab()
eng.test(nargout=0)
其中指定 nargout=0
。盡管腳本會打印輸出,但它不會向 Python 返回任何輸出參數(shù)。

自定義函數(shù)的調(diào)用
在time.m中輸入:
function a = time(b,h)
a = b*h;
end
在H.py中輸入:
import matlab.engine
eng = matlab.engine.start_matlab()
ret = eng.time(1.0,5.0)
print(ret)
可以實現(xiàn)函數(shù)的調(diào)用。由于函數(shù)僅返回一個輸出參數(shù),因此無需指定 nargout
