Data exchange via COM interface

3 次查看(过去 30 天)
The task is to organize data exchange between the simulation program IPSEpro and Matlab. I'm trying that:
app = actxserver('PSE.Application');% Start IPSEpro
proj = invoke(app,'openProject','D:\example.pro'); %Call project file
run = invoke(proj, 'runSimulation' ,0); %Run simulation
object = invoke(proj,'findObject','generator001'); %Call the object
temp = invoke(object,'findItem',0,'power'); %Call the parameter of the object
P = invoke(temp,'value'); %Return the value of the parameter
The error:
Error using Interface.PSE_Application.openProject.findObject.findItem/set
Invoke Error: Unknown name or named argument
Error in example (line 9)
P = set(temp,'Value',8);
What can be the problem? Also, I can't get the list of COM object properties and interfaces, because the function get(app) returns an empty value.
  1 个评论
Guillaume
Guillaume 2017-2-9
The line shown in the error message does not match the code you've given.
In any case, without documentation of the COM interface there's little we can do to help you.

请先登录,再进行评论。

采纳的回答

Guillaume
Guillaume 2017-2-9
Without the documentation of the COM interface, there's not much we can do to help. I have seen cases where matlab does not want to show the COM interface with methodsview, properties, etc. In that case, you can use the OLE/COM viewer or the object browser in Visual Studio or in any Office program (under the hidden by default developer tab).

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Use COM Objects in MATLAB 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by