Best/fastest way to call MATLAB routine from C repeatedly
Mostrar comentarios más antiguos
We have a MATLAB routine/script that we wish to call from a C program.
What we have tried to do so far is to use the MATLAB compiler to create a DLL, and then in the C program, using the Windows SDK, we load the DLL (LoadLibrary), and then we run Init, run the DLL, and run Close (all through calls using GetProcAddress).
We have successfully done this with a simple "hello_world.m" function that doesn't do anything interesting. What we have found is that the process above is really slow -- ~15 seconds to load the DLL and ~10 seconds to run it.
Our desired "use case" is to use MATLAB to implement a routine that would get called numerous times by the C program, and so this slowness is a real concern.
My questions are:
- Is this slowness similar to what others have experienced?
- Is there a smarter way to go about this whole goal, maybe in how we compile the MATLAB code, or how we interact with it from C, that gives better performance?
We've looked for examples of what we're trying to do, and there aren't a lot of them and none go into this sort of level of detail. It is much more common to run compiled C code from MATLAB, and maybe there are good reasons why people don't usually do it the other way around?
Respuesta aceptada
Más respuestas (1)
Bruno Luong
el 10 de Dic. de 2018
1 voto
You must not do Loading, Init, Close repeatly.
They must be called once, then you must call whatever function you want repeatly with in Init and Close.
1 comentario
David Aronstein
el 13 de Dic. de 2018
Categorías
Más información sobre COM Component Integration en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!