您好,登錄后才能下訂單哦!
MATLAB中怎么調(diào)用Python代碼,很多新手對(duì)此不是很清楚,為了幫助大家解決這個(gè)難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。
function res = increase_piece(x)
res = {};
if isequal(x, sort(x))
res = [res, x];
else
diff_x = diff(x);
node = [0, find(diff_x < 0)];
for i = 2:length(node)
res = [res, x( node(i-1)+1 : node(i) )];
end
res = [res, x( node(i)+1 : end )];
end
end
import numpy as np
def increase_piece(x):
x = np.array(x)
idx = np.nonzero(np.diff(x) < 0)[0] + 1
return np.split(x, idx)
如果不是要用matlab來調(diào)用的話,這個(gè)也不必寫成函數(shù)了,兩行就能出結(jié)果。
這個(gè)返回的一個(gè)列表,列表的每個(gè)元素是Numpy數(shù)組。
把改Python文件命名為''increasing_piece.py''。
到matlab里來調(diào)用他,并把結(jié)果轉(zhuǎn)化為matlab中的數(shù)據(jù)類型
function res = call_increasing_piece_py(x)
res = cell(py.increasing_piece.increase_piece(x));
for i = 1:length(res)
res{i} = double(res{i});
end
由Python返回的List或者Tuple可以用matlab的cell函數(shù)轉(zhuǎn)化為matlab中的細(xì)胞數(shù)組,再循環(huán)一下用double函數(shù)依次把其中的Numpy數(shù)組對(duì)象轉(zhuǎn)化為matlab中的數(shù)組。
測(cè)試
先試一下matlab調(diào)用python寫的那個(gè)函數(shù):
再測(cè)試一下只用matlab寫的那個(gè)函數(shù):
看完上述內(nèi)容是否對(duì)您有幫助呢?如果還想對(duì)相關(guān)知識(shí)有進(jìn)一步的了解或閱讀更多相關(guān)文章,請(qǐng)關(guān)注億速云行業(yè)資訊頻道,感謝您對(duì)億速云的支持。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。