Clear Filters
Clear Filters

How to generate a DLL with Matlab Coder or Embedded Coder ?

11 views (last 30 days)
Hello,
I use Matlab Coder for genereta .cpp and .h files coresponding to my .m function.
With the .cpp and the .h I create the .dll file on visual studio.
Is it possible to generate directly the .dll from matlab coder or embedded ?
Thank you for your help !

Accepted Answer

Desiree
Desiree on 26 Jul 2011
Creating a dynamic library is currently not available with MATLAB Coder, only static libraries. One workaround can be to go through Simulink and place the code in a MATLAB Function block and then use Embedded Coder's Shared Library Target (ert_shrlib.tlc) to create the DLL directly. You would need Simulink Coder also in this case. The other workaround is to create the DLL externally in an IDE as you already do. MathWorks development is looking into adding this feature for MATLAB Coder. MATLAB Compiler on the other hand can be used to create DLLs out of your MATLAB Code directly, however it does not include the step of C code generation, but works with a runtime that needs to be installed on the target system to be able to use the DLL.
  2 Comments
Michel
Michel on 26 Jul 2011
Thank You,
I have Simulink Coder but no Compiler, I'll try with Simulink Coder

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!