Control Matlab COM Automation Server instance from other Matlab instance

2 views (last 30 days)
Hello, I am wondering if it is possible to register one Matlab instance with the Automation Server, and then control this registered instance from a second Matlab instance. In the documentation there is only code for applications/languages, but not Matlab.
Best Regards,
Silvan

Accepted Answer

Amit Doshi
Amit Doshi on 7 Sep 2017
Hello,
You can register one MATLAB instance and can create a COM server of it from another MATLAB instance.
To register MATLAB as an automation server, refer the below link:
Then, call it from other MATLAB instance:
a = actxserver('Matlab.Application')
  4 Comments
TZ
TZ on 20 May 2020
Below is my version of how to control a Simulink model (Modelname.slx) from another Matlab instance via the Appdesigner. The Appdesigner file is run in the main Matlab instance.
%the code below is inside the startup function of the appdesigner file
rehash path
app.runDirectory = strrep(string(pwd),'\','/'); % to get the path right
% Start second matlab instance
!matlab -nodesktop -r regmatlabserver &
app.inst2 = actxserver('Matlab.Application'); % inst2 must also be set as a property in appdesigner
command = "open '" + app.runDirectory + "\Modelname.slx'";
Execute(app.inst2,command); %this opens the second instance and the model Modelname.slx
MinimizeCommandWindow(app.inst2); % calling a second instance opens command windows that might be disturbing
Then you can control the simulink model in the typical fashion, with the exception of specifiying the 2nd instance:
command1 = "set_param('Modelname', 'SimulationCommand', 'start')"; % construct start command
Execute(app.inst2,command1); %run the model
Please note: Calling a 2nd instance requires administrator privileges. You might want to permanently allow Matlab to be run with those privileges.
mohit patil
mohit patil on 21 May 2020
thank you got my thing working..
Also is there any other way to control multiple matlab instances(Slaves) from one instance(Master)?
As with COM server we can only control one matlab from other instances of matlab

Sign in to comment.

More Answers (0)

Categories

Find more on Write COM Applications to Work with MATLAB in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!