Best/fastest way to call MATLAB routine from C repeatedly
9 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
David Aronstein
il 7 Dic 2018
Commentato: David Aronstein
il 13 Dic 2018
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?
0 Commenti
Risposta accettata
Koundinya
il 10 Dic 2018
You could try using the MATLAB Engine API tp speed up things a bit. The MATLAB Engine API for C and C++ provides a convenient way to evaluate MATLAB expressions or routines from your C program. Using the engine api your application could also connect to an existing session of MATLAB, to run your matlab routine/script.This approach should be faster because it doesn't have the overhead of loading the DLL.
Più risposte (1)
Bruno Luong
il 10 Dic 2018
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.
Vedere anche
Categorie
Scopri di più su C Shared Library Integration in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!