Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does anyone have experience creating a shared library in MATLAB?

Tags:

python

c

matlab

A researcher has created a small simulation in MATLAB and we want to make it accessible to others. My plan is to take the simulation, clean up a few things and turn it into a set of functions. Then I plan to compile it into a C library and use SWIG to create a Python wrapper. At that point, I should be able to call the simulation from a small Django application. At least I hope so.

Do I have the right plan? Are there are any serious pitfalls that I'm not aware of at the moment?

like image 699
Marcel Levy Avatar asked Aug 07 '08 18:08

Marcel Levy


4 Answers

One thing to remember is that the MATLAB compiler does not actually compile the MATLAB code into native machine instructions. It simply wraps it into a stand-alone executable or a library with its own runtime engine that runs it. You would be able to run your code without MATLAB installed, and you would be able to interface it with other languages, but it will still be interpreted MATLAB code, so there would be no speedup.

like image 91
Dima Avatar answered Nov 17 '22 01:11

Dima


I remember that I was able to wrap a MATLAB simulation into a DLL file and then call it from a Delphi application. It worked really well.

like image 26
Michal Sznajder Avatar answered Nov 17 '22 01:11

Michal Sznajder


I'd also try ctypes first.

  1. Use the MATLAB compiler to compile the code into C.
  2. Compile the C code into a DLL.
  3. Use ctypes to load and call code from this DLL

The hardest step is probably 1, but if you already know MATLAB and have used the MATLAB compiler, you should not have serious problems with it.

like image 2
Eli Bendersky Avatar answered Nov 17 '22 01:11

Eli Bendersky


Perhaps try ctypes instead of SWIG. If it has been included as a part of Python 2.5, then it must be good :-)

like image 1
Bartosz Radaczyński Avatar answered Nov 17 '22 00:11

Bartosz Radaczyński