How do i get rid of the warning 'The function 'functionname' was not found in the library In loadlibrary at 402'
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
I cannot figure out why this warning pops up. But inside the h file this is an example of one of the functions it says was not found in the library:
struct StructName *FunctionName( struct StructName *file, char *Name, double startTime,double stopTime, double *refTIME, struct TimeTag *pRefGMT, unsigned short returnType);
It seems like the function is declared in the .dll header file. How do i get this library to load into matlab w/out this error popping up?
1 Kommentar
Kaustubha Govind
am 17 Jun. 2013
Is it possible that the header file declares the function, but it is not actually exported from the library? Please look at the list of functions exported from the library to make sure of that.
Antworten (1)
Andrew Reibold
am 17 Jun. 2013
Bearbeitet: Andrew Reibold
am 17 Jun. 2013
If its not affecting your code, and you want it to run as is but suppress the warnings, then put this before the line you want to start suppression.
warning('off','all') %Turns off warnings
and afterwards put
warning('on','all') %Turns them back on for future work
-Andrew
Siehe auch
Kategorien
Mehr zu Call C from MATLAB finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!