Yes I have come across these before, however have never used them for any of my own work. You can also link directly to C-programs through MEX-files, this is one way around the interpreted limitation of Matlab.I do believe there is a code generator for Matlab that will take your M-files or Simulink models and generate C code. Not that that is how I would go about writing C programs, but it is available.
To do this you need to create a MEX-file as:
Rich (BB code):
//Declare libraries
#include "math.h"
#include "mex.h" // Must declare mex.h in order to link to Matlab
void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
{
//C-code
return;
}
Dave