Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

problem in running a m-file

3 visualizaciones (últimos 30 días)
Mahnaz
Mahnaz el 26 de Oct. de 2012
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
Hello
I have a m-file(comdll.m) with following functions:
tic
loadlibrary('comdll','comheader');
calllib('comdll','initialize',1,1);
unloadlibrary('comdll');
toc
when I run this m-file i see in command window:
>> comdll
Mex file entry point is missing. Please check the (case-sensitive)
spelling of mexFunction (for C MEX-files), or the (case-insensitive)
spelling of MEXFUNCTION (for FORTRAN MEX-files).
??? Invalid MEX-file 'C:\...comdll.dll': .
what is the problem?

Respuestas (3)

Kaustubha Govind
Kaustubha Govind el 26 de Oct. de 2012
You should probably rename your .m file (comdll.m) so that it doesn't clash with commdll.dll. If you type which commdll in the MATLAB command window, you should see that it is picking up the DLL over your MATLAB script. This is because in older versions of MATLAB, MEX functions used to have .DLL extensions on Windows.

Jan
Jan el 26 de Oct. de 2012
Editada: Jan el 26 de Oct. de 2012
"comdll" is the name of the DLL and of the M-file? I'd try to use different names at first. It seems like Matlab tries to execute the DLL as Mex-function.

Mahnaz
Mahnaz el 26 de Oct. de 2012
thanks
i renamed the m-file and it doesn't have any problem.

La pregunta está cerrada.

Etiquetas

Productos

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by