Porting a Matlab Toolbox to Scilab
What you must do to port a matlab mex toolbox ?
Mostly nothing.
An API which translates mex call into scilab call exits. There are some explanations in SCIDIR/lib/scilab-4.1/examples/mex-examples.
In this directory you will find :
- how to link a C mex file in the cmex directory;
- how to link a fortran mex file in the fmex directory;
- how to link a C++ mex file in the cppmex directory.
The include files with the mex prototypes can be found in SCIDIR/lib/scilab-4.1/routines (it's mex.h).
