Info
この質問は閉じられています。 編集または回答するには再度開いてください。
Does Matlab support the creation of COM components? Is that a scripting language?
1 回表示 (過去 30 日間)
古いコメントを表示
Hi, I need to call Matlab from GenXPro software (in which we code with Java) to calculate something and return it to the original software. To do this the first condition is that the programming language (e.g. Matlab) support the creation of COM components which is the feature of many of scripting languages. So, I would be thankful to answer my questions in the subject; I search for that, but the answers are not consistent.
Many Thanks, Jamal
0 件のコメント
回答 (1 件)
Guillaume
2015 年 9 月 4 日
Matlab implements a COM server, so you can indeed control matlab from any software that supports instantiating COM components. it's actually well documented in the help.
However, as far as I know, Java does not natively allow you to interface with COM.
3 件のコメント
Guillaume
2015 年 9 月 4 日
var matlab = new ActiveXObject("Matlab.Application");
matlab.PutWorkspaceData("gxptTarget", "base", gxptTarget);
matlab.PutWorkspaceData("gxptOutput", "base", gxptOutput);
matlab.PutWorkspaceData("gxptParams", "base", gxptParams);
matlab.PutWorkspaceData("gxptModelInfo", "base", gxptModelInfo);
matlab.Execute("result = somefunc(gxptTarget, gxptOutput, gxptParams, gxptModelInfo);")
return matlab.GetWorkspaceData("result", "base");
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!