How to open .dll file in MATLAB. I have converted the .slx file to .dll file format. Now I want to open and see the results. I don't have any header file which I can use with the function "loadlibrary"

121 vues (au cours des 30 derniers jours)
I have .dll file which I want to open and run in MATLAB. What is the procedure, please suggest.

Réponse acceptée

Kojiro Saito
Kojiro Saito le 3 Mar 2020
Modifié(e) : Kojiro Saito le 4 Mar 2020
For C shared library, you can load the dll by loadlibrary and call functions by calllib.
For detail, please see this document.
For C++ shared library, you need to do addpath in order to set your dll file to MATLAB's search path and you can call functions by clib.libname.funcname.
For detail, please see this document.
For .NET assembly, you can load the dll by NET.addAssembly and call functions by like this.
asm = NET.addAssembly('your.dll');
cls = dotNetTestClass.TestClass; % dotNetTestClass is namespace and TestClass is class in C#
a = 1; % Input 1
b = 2; % Input 2
result = TestFunc(cls, a, b); % TestFunc is function name in C#
For detail, please see this document.
If the dll is created from .slx using Embedded Coder, you need to do an additional step as described in the following answer.
  12 commentaires
Krutika  Shetkar
Krutika Shetkar le 18 Mar 2020
Hi Kojiro,
Is there any solution where I can run the dll file in simulink? Can you suggest me how to run the dll file in simulink to check the results.
Kojiro Saito
Kojiro Saito le 18 Mar 2020
There are various ways to do that and here is a link to File Exchange page which describes them.

Connectez-vous pour commenter.

Plus de réponses (1)

Krutika  Shetkar
Krutika Shetkar le 12 Mar 2020
Hi Kojiro,
I have successfully loaded the dll library. Can you suggest me how to test the file like how I can run the file and check the output in simulink/MATLAB.

Catégories

En savoir plus sur C Shared Library Integration dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by