最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會員登陸 & 注冊

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

2020-04-26 14:45 作者:-PCon-  | 我要投稿

一些比較古早的方法建議在python中安裝mlab庫來實現(xiàn)調(diào)用的,這個方法已經(jīng)淘汰不用了,這里介紹比較新的方法。

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

?2019?年?04?月?26?日

Txing


在python中調(diào)用MATLAB的方法的評論 (共 條)

分享到微博請遵守國家法律
绿春县| 宜都市| 嵊州市| 荆门市| 荥阳市| 婺源县| 金坛市| 武邑县| 昭苏县| 攀枝花市| 南雄市| 岱山县| 博野县| 普兰县| 珠海市| 柳河县| 达孜县| 信宜市| 霍林郭勒市| 潍坊市| 呼和浩特市| 天柱县| 兴化市| 宜兰县| 崇仁县| 张掖市| 齐齐哈尔市| 合阳县| 姜堰市| 巴塘县| 佛冈县| 莱阳市| 浪卡子县| 大余县| 谢通门县| 东辽县| 濮阳县| 元阳县| 尼玛县| 神木县| 峨边|