Mixing loadlibrary and mex using same DLL
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Can I load a library and use Matlab's calllib machinery, and also use mex files that call on the same DLL? Will they interfere with each other?
0 Kommentare
Antworten (1)
Philip Borghesani
am 11 Jul. 2012
There is no interference other then that clearing/unloading the library requires clearing the mex file and unloading the library. The operating system maintains a count of how many times a library is loaded and will not unload it until it is no longer in use.
It is also possible to add mex like functionality to a custom library you will load with loadlibrary. Take a look at extern\examples\shrlib\yprime.c which is a modified copy of the mex yprime example that can be called as a mex file and can be loaded with loadlibrary and has functions that use the mx api.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Write C Functions Callable from MATLAB (MEX Files) finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!