Best/fastest way to call MATLAB routine from C repeatedly
4 次查看(过去 30 天)
显示 更早的评论
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 个评论
采纳的回答
Koundinya
2018-12-10
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.
更多回答(1 个)
Bruno Luong
2018-12-10
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.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 C Shared Library Integration 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!