How to call a matlab plot function from python with arguments?
31 次查看(过去 30 天)
显示 更早的评论
Hi all,
I am trying to create 3D graphs in python and cannot use matplotlib, as I need to be able to plot with log scales. This led me to controlling matlab via python. I am trying to create a function to plot a 3d graph. When I call my function in python, I get an error saying "not enough input arguments". Here is my matlab code, python code, and screenshot of error. Can anyone point me in the right direction?
matlab, tplot.m
function tplot(X, Y, Z)
figure
plot3(X, Y, Z)
end
python
import matlab.engine
eng = matlab.engine.start_matlab()
X = matlab.double([1, 2, 3, 4, 5])
Y = matlab.double([5, 6, 7, 8, 5])
Z = matlab.double([9, 10, 11, 12, 13])
eng.tplot(X, Y, Z, nargout=0)
eng.close()
and lastly my error:
0 个评论
回答(1 个)
Sai Sri Harsha Vallabhuni
2020-7-14
Instead of
eng.tplot(X, Y, Z, nargout=0)
Try this
eng.run("\path\to\tplot.m\file", X, Y, Z, nargout = 0)
Hope this helps.
2 个评论
Kushal Malhotra
2021-7-27
编辑:Kushal Malhotra
2021-7-27
Hello @Nicholas Clavette
Try a matlab function eng.hold("on",nargout=0). If that doesn't work then I would suggest it usually happens because the python script is terminated. So at the last line of your python program add time.sleep(1000). This won't terminated the current pthon program and allow you to view those figures for the amount of time mentioned in .sleep() method. The time is in seconds mentioned above. :)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Python Package Integration 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!