MATLAB Engine API for Python error??

4 visualizaciones (últimos 30 días)
Teresita Ramirez Aguilar
Teresita Ramirez Aguilar el 19 de Ag. de 2019
Respondida: Kojiro Saito el 21 de Ag. de 2019
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')

Respuestas (1)

Kojiro Saito
Kojiro Saito el 21 de Ag. de 2019
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')

Categorías

Más información sobre Call MATLAB from Python en Help Center y File Exchange.

Productos

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by