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"

130 visualizzazioni (ultimi 30 giorni)
I have .dll file which I want to open and run in MATLAB. What is the procedure, please suggest.

Risposta accettata

Kojiro Saito
Kojiro Saito il 3 Mar 2020
Modificato: Kojiro Saito il 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 Commenti
Krutika  Shetkar
Krutika Shetkar il 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.

Accedi per commentare.

Più risposte (1)

Krutika  Shetkar
Krutika Shetkar il 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.

Categorie

Scopri di più su C Shared Library Integration in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by