I have a .dll library (c++) and I need to Import it to Matlab (I have no header file for it)
6 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Omar Abdelkader
am 24 Apr. 2017
Kommentiert: Omar Abdelkader
am 25 Apr. 2017
loadlibrary() doesn't work with me because i have no Header file
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 24 Apr. 2017
You will need to write a header file for it listing all the interface routines you wish to be able to call.
Note: it will only be possible to call functions which were created with
extern "C"
in the C++ source.
6 Kommentare
Walter Roberson
am 24 Apr. 2017
Looking at the code, it appears to me that it is not designed to be called from C, but
"The loadlibrary function only supports calling functions that are callable from C and header files that can be parsed by a C compiler. Functions written in C++ must be declared as extern "C"."
To call it from MATLAB, you would have to create some interface code that was C compatible.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Use Prebuilt MATLAB Interface to C++ Library 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!