use C# lib in MatLab

94 ビュー (過去 30 日間)
Roland Thamm
Roland Thamm 2019 年 9 月 13 日
編集済み: Jakup Tauser a Lava 2024 年 3 月 28 日 10:24
How can I use a C# Library with MatLab

回答 (1 件)

Kojiro Saito
Kojiro Saito 2019 年 9 月 14 日
You can call your C# library by loading dll using NET.AddAssembly and call its function.
Here is a simple example in this document.
In this example, NetDocCell.dll is used and it is compiled from NetDocCell.cs described in C# NetDocCell code in this document.
Here is a snippet to call C# dll.
dllPath = fullfile(pwd, 'NetDocCell.dll');
% Load C# dll
asm = NET.addAssembly(dllPath);
% Creat a C# class
graph = NetDocCell.MyGraph;
% Create cell array containing all data
mlData = cell(graph.getNewData);
% Plot the data and label the graph
figure('Name',char(mlData{1}))
plot(double(mlData{2}(2)))
xlabel(char(mlData{2}(1)))
  1 件のコメント
Jakup Tauser a Lava
Jakup Tauser a Lava 2024 年 3 月 28 日 10:23
編集済み: Jakup Tauser a Lava 2024 年 3 月 28 日 10:24
Hey
I need to use some c# .dll inside simulink.
Woud the best strategy be to use matlab functions that handle the c# dll inside simulink?
:)

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeMatrix Indexing についてさらに検索

タグ

製品


リリース

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by