필터 지우기
필터 지우기

C# with matlab via COM

조회 수: 2 (최근 30일)
xiaoli
xiaoli 2024년 5월 29일
댓글: xiaoli 2024년 6월 1일
不知道为什么,I run official's example,却提示我以下信息。若是使用Execute直接执行.m代码是可以的,不知道为什么执行.m写的的function就不可以,在C#中我也引用了MLAPP
未定义与'double’类型的输入参数相对应的函数myfunc
but I indeed write myfunc function in E:\modelfirst
.m code:
function [x,y] = myfunc(a,b,c)
x = a + b;
y = sprintf('Hello %s',c);
C# code :
MLApp.MLApp matlab = new MLApp.MLApp();
matlab.Execute(@"cd E:\modelfirst\myfunc");
object result = null;
matlab.Feval("myfunc", 2, out result, 3.14, 42.0, "world");
object[] res = result as object[];
Console.WriteLine(res[0]);
Console.WriteLine(res[1]);
Console.ReadLine();
find help
thank you!!!

채택된 답변

SACHIN KHANDELWAL
SACHIN KHANDELWAL 2024년 5월 30일
One possible issue could be related to the directory path. In your C# code, you are attempting to change the directory to 'E:\modelfirst\myfunc' using 'matlab.Execute(@"cd E:\modelfirst\myfunc");'.
This appears to be incorrect because "myfunc" is the name of the function you're trying to call, not a directory. You should change the directory to 'E:\modelfirst', where your '.m' file is located.
The corrected line should be :
>> matlab.Execute(@"cd E:\modelfirst");
If you are using MATLAB R2022b or a later version, I recommend utilizing the MATLAB Engine API for .NET. This API provides an interface between .NET programming languages and MATLAB.
To set up your .NET environment for building engine applications, please refer to the following MathWorks documentation:
I hope you can now proceed with your workflow.
  댓글 수: 1
xiaoli
xiaoli 2024년 6월 1일
TK so much,useful!
I get it

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by