Why do I get the error 'specified module could not be found' when using 'loadlibrary'?
10 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
MathWorks Support Team
el 18 de Ag. de 2020
Respondida: MathWorks Support Team
el 25 de En. de 2021
When using MATLAB's "loadlibrary" function, I get the following error:
>> loadlibrary('example.dll', 'example.h');
There was an error loading the library "example.dll"
The specified module could not be found.
How do I resolve this issue?
Respuesta aceptada
MathWorks Support Team
el 18 de Ag. de 2020
This error can occur on Windows platforms when MATLAB successfully locates and compiles the header file but fails to locate the DLL file. One possible solution is to specify the absolute path to the DLL file so that MATLAB does not need to search for it:
>> loadlibrary('C:\Users\user\example\example.dll', 'example.h');
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Modulation en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!