Function 'loadlibrary' is not supported for standalone code generation. Seeking alternative options.
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hi,
I am using loadlibrary() to call some functions from a C++ .dll file so that I can develop my application in MATLAB.
However, when I try to generate standalone code using MATLAB Coder, I get the following error:
>> coder -build CodeApp.prj
??? The function 'loadlibrary' is not supported
for standalone code generation. See the
documentation for coder.extrinsic to learn how
you can use this function in simulation.
It appears that loadlibrary is not supported for code generation. Does anyone know of other ways where I can include the .dll file?
(I could compile my application using MATLAB Compiler, but that would require MCR, which isn't what I need.)
Any help would be very much appreciated.
0 comentarios
Respuesta aceptada
Mike Hosea
el 22 de Abr. de 2011
Unfortunately, I don't have a lot of experience trying to do this kind of thing, so I apologize in advance if there are helpful details that I ought to mention but don't happen to know. What I do know that the intended tool for code generation would be coder.ceval. Now, coder.ceval doesn't work in MATLAB, but you can use coder.target in a judicious way so that your application will still run in MATLAB while you're developing it and will also generate code. Something like
runningInMATLAB = isempty(coder.target);
if runningInMATLAB
loadlibrary(...)
end
...
if runningInMATLAB
% Use calllib here
else
% Use coder.ceval here to call the same function
end
...
if runningInMATLAB
unloadlibrary(...);
end
HTH -- Mike
2 comentarios
Kaustubha Govind
el 25 de Abr. de 2011
Yu: When you say MATLAB splits up your "\n" did you mean:
>> disp('test\nprint')
test\nprint
If so, you may want to use sprintf:
>> disp(sprintf('test\nprint'))
test
print
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!