Import large C++ project into Matlab
Ältere Kommentare anzeigen
I have a C++ console application with lots of classes, and external dependencies, and I want to integrate it with Matlab project.
So, I have built the C++ project as DLL, but I don't get how to continue. I have tried just to call loadlibrary() giving the .dll filename.
Please, help to understand what to do next.
3 Kommentare
James Tursa
am 12 Aug. 2020
Bearbeitet: James Tursa
am 12 Aug. 2020
Do you have a header file with all of the exported function prototypes? Do all of your functions use the extern "C" interface?
Suzy
am 12 Aug. 2020
James Tursa
am 12 Aug. 2020
If you look at the documentation for loadlibrary, you will see that you need to feed it a header file that has all of the exported function prototypes in it, and that those functions must use the extern "C" interface.
Antworten (0)
Kategorien
Mehr zu MATLAB Compiler finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!