MATLAB Engine API for Python error??
이전 댓글 표시
I am using MATLAB Engine API for Python but I keep getting this error when I run my script with python. I am new to both Matlab and the engine, when I run this command:
find(any(any(I,3),1),1,'last')
on the matlab prompt it works fine....
error:
File "Get_Coordinates.py", line 11, in <module>
eng.find(any(any(I,3),1),1,'last')
TypeError: any() takes exactly one argument (2 given)
python script:
import matlab.engine
eng = matlab.engine.start_matlab()
I=eng.imread('whitewave.png')
eng.imshow(I)
eng.find(any(I),1);
eng.find(any(any(I,3),1),1,'last')
답변 (1개)
Kojiro Saito
2019년 8월 21일
It's because you're inputting Python's any function (document of any in Python 3). It is not fully compatible with any function of MATLAB (document of any in MATLAB).
If you want to input MATLAB's any, you can use by eng.any.
eng.find(eng.any(eng.any(I,3),1),1,'last')
카테고리
도움말 센터 및 File Exchange에서 Call MATLAB from Python에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!