jaderberg / python-matlab-bridge

A simple interface to allow Python to call MATLAB functions.
95 stars 34 forks source link

does not open on relative path #4

Closed dabraude closed 11 years ago

dabraude commented 11 years ago

Hi, I was getting an exception when I tried to run the test program. A bit of searching later I discovered the problem is that it expects absolute paths to functions. If you change line 80 from: 'func_path': func_path, to: 'func_path': os.path.abspath(func_path),

It fixes it. What do you think?

jaderberg commented 11 years ago

Thank you - I have added that in!