In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-01-20 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >
Share
Shulou(Shulou.com)06/02 Report--
MATLAB how to call Python code, many novices are not very clear about this, in order to help you solve this problem, the following editor will explain in detail for you, people with this need can come to learn, I hope you can gain something.
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来调用的话,这个也不必写成函数了,两行就能出结果。 这个返回的一个列表,列表的每个元素是Numpy数组。 把改Python文件命名为''increasing_piece.py''。 到matlab里来调用他,并把结果转化为matlab中的数据类型 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函数转化为matlab中的细胞数组,再循环一下用double函数依次把其中的Numpy数组对象转化为matlab中的数组。 测试 先试一下matlab调用python写的那个函数:Test again the function written only in matlab:
Is it helpful for you to read the above content? If you want to know more about the relevant knowledge or read more related articles, please follow the industry information channel, thank you for your support.
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.