C# with matlab via COM
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
不知道为什么,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!!!
0 commentaires
Réponse acceptée
SACHIN KHANDELWAL
le 30 Mai 2024
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:
https://www.mathworks.com/help/matlab/matlab_external/requirements-to-build-net-engine-programs.html
I hope you can now proceed with your workflow.
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur .NET Methods in MATLAB dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!