We want to use functions written in matlab in our new python application. We want to use ctypes because the user won't need matlab on his machine. We are testing this method but can't get it to work. We lack c knowledge (and much more...). This is our simple test matlab function:
function [ z ] = adding( x,y )
z = x + y;
end
We compiled this with matlab into a shared library .dll. In a python interpreter we have:
import ctypes
dl = ctypes.CDLL('adding.dll')
Now we are stuck because we can't find the command to access the function in matlab.
What should we do ?