How is data passed from MATLAB to python?
显示 更早的评论
I have recently begun making python calls directly from MATLAB for a number of different things, including non-blocking .mat file saves. So far this has been working but I haven't been able to find documentation on the way data is being passed to the Python interpreter.
With Java, many sources indicate that data is passed by value and not by reference. This leads to a fair amount of overhead to transfer large amounts of data which I have noticed before in my applications. To deal with this I have designed my applications specifically to transfer data back and forth as little as possible between java and MATLAB and attempted to spread out that transfer as much as possible, so instead of transferring a large data structure all at once I transfer the data in chunks as it becomes available.
What I really want to know is whether or not I should be doing the same thing for Python. I have not yet noticed much overhead passing data to the Python interpreter, but I haven't tried passing anything particularly large yet (just a few MB at a time, so far). Can someone enlighten me about the specifics of the data passing functionality and best practices for dealing with it?
采纳的回答
更多回答(1 个)
Pengfei Li
2018-9-11
0 个投票
hello,
I want to pass the matlab data to python to create a csc sparse matrix using python language in matlab. now I met a problem, can you help me? I know you are an expert in this way, because I look many of you answers. Thank you very much. my code in matlab as follow, I met the data type problem.
iK=[0 2 2 0 1 2];
jK=[0 0 1 2 2 2];
sK=[1 2 3 4 5 6];
data=py.numpy.array(sK);
ir=py.numpy.array(iK);
jr=py.numpy.array(jK);
A = py.scipy.sparse.csc_matrix(Data,ir,jr);
when I came to create the csc_matrix, then python would tell me the data type is not right. could you help me correct it? thank you very much.
类别
在 帮助中心 和 File Exchange 中查找有关 Call Python from MATLAB 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!