フィルターのクリア

how do I call a MATLAB dll in C#

11 ビュー (過去 30 日間)
Jonathan Klabacha
Jonathan Klabacha 2012 年 10 月 15 日
編集済み: Anna Fritz 2021 年 7 月 15 日
I am looking to compile a MATLAB plotting script into a dll and implement it with a windows c# project that has been developed.
What has been done thus far
- simple code created
function [xOut,yOut] = simpPlot(szRand)
x = 1:1:szRand;
xOut = x;
y = rand(1,szRand);
yOut = y;
plot(x,y)
- Compiled into dll
mcc -W lib:simpPlot -T link:lib simpPlot.m
- dll imported in c# code
[DllImport("simpPlot.dll")]
public static extern void simpPlotInitialize();
Is it possible to display the plot through this method? What is the best way to pass information into the dll? My knowledge is limited in this sense and examples would be appreciated.

回答 (1 件)

Anna Fritz
Anna Fritz 2021 年 7 月 15 日
編集済み: Anna Fritz 2021 年 7 月 15 日
Hello, I am having the same issues. Does anyone have helpful resourses? I have searched the web but haven't found anything yet. Thanks!

カテゴリ

Help Center および File ExchangeMATLAB Compiler についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by