How to opening 1 instance of MATLAB from MATLAB, but accessing it multiple times
조회 수: 43 (최근 30일)
이전 댓글 표시
Hello,
I would like to do the followings:
- From a MATLAB session, open another instance of MATLAB - which can be done by: !matlab &
- Every now and then from existing MATLAB session have a command executed in the other session. This is the part that I do not know how to do. How in existing MATLAB session, I can have a command exscuted on another instance I already opened.
I greatly appreciate your suggestions.
댓글 수: 3
Raymond Norris
2021년 8월 17일
Does the second MATLAB have to have its Desktop visible to interact with or does it suffice to be running in "headless" mode?
Do you have the Parallel Computing Toolbox?
채택된 답변
Raymond Norris
2021년 8월 18일
Using the Parallel Computing Toolbox, look at parpool and parfeval. parpool will start a N number of "workers" (i.e. headless instances of MATLAB), which can be running either on your local machine (supported out of the box) or on a remote machine (additional work to setup). parfeval offloads execution to a worker. For example
% Initialization: get a handle to the cluster and start a pool of 1 worker
cluster = parcluster;
pool = cluster.parpool(1);
% ... run other code ...
% Spawn command to run on worker
pool.parfeval(@mycode,0,{});
parfeval is non-blocking and can be called whenever you want to offload code. The {} is the input arguements to calling mycode. If you code has input args, assign them into {}.
If your code returns a result, then you'll need to assign it a result so that you can pull the result(s) back. You won't be notified when the code finishes, so you'll need to verify that the state has finished.
f = pool.parfeval(@mycode,1,{});
% ... run other code ...
% Get results
f.wait
result = f.fetchOutputs;
See the doc for parfeval for more information. One consideration is that a pool will expire if not used after a period of time (default is 30 minutes). You can disable this auto-deletion in the parallel preferences.
댓글 수: 6
Raymond Norris
2021년 8월 19일
Correct, use the cancel() method to end the task (not interrupt). For example
>> local = parcluster('local');
>> pool = local.parpool(1);
Starting parallel pool (parpool) using the 'local' profile ...
Connected to the parallel pool (number of workers: 1).
>>
>> % Run task for 10 hours
>> f = pool.parfeval(@(t)pause(t),0,60*60*10);
>> f.State
ans =
'running'
>> % Cancel task preemptively
>> f.cancel
>> f.State
ans =
'finished'
>>
추가 답변 (2개)
Walter Roberson
2021년 8월 18일
As you are using Windows, one approach is to use .NET System.Diagnostics.Process https://www.mathworks.com/matlabcentral/answers/586706-how-to-redirect-standard-input-and-standard-output-using-net-system-diagnostics-process#answer_487475 to open a process connection, and write commands to the other MATLAB. The link shows how to redirect input and output.
Another possibility is to invoke MATLAB through actxserver() and use the Automation Engine facilities; https://www.mathworks.com/help/matlab/call-matlab-com-automation-server.html
댓글 수: 1
Jon
2024년 5월 9일
Hello @Walter Roberson
I am trying to do something similar to what the OP has asked about. I do not have the Parallel Processing toolbox, and so was interested in your alternative suggestions.
First let me describe what I would like to accomplish. I am running MATLAB (R2024a) Update 2 on a Windows 10 computer.
- Open a first instance of MATLAB in the usual way from the Window desktop
- From the first instance of MATLAB open a second instance of MATLAB (ideally without another user interface opening up)
- From first instance of MATLAB tell second instance of MATLAB to run a .m file
- Use the first instance of MATLAB interactively for some time (1 hour or more)
- From the first instance of MATLAB tell the second instance of MATLABt to run a .m file
- From the first instance of MATLAB tell the second instance of MATLAB to run the quit command
I see that you suggest that this could be done using either a com server or .Net. I looked into the com server approach, but will have difficulties with that, because in our corporate installation, it is difficult to obtain needed administrative privileges.
I am therefore most interested in the .Net approach. Googling this I see some general mentions that this could be used for my use case, but as I don't know anything about .Net I'm not really sure where to start.
If you could provide any further specific hints, or useful links that specifically address my main need which is to tell the second instance of MATLAB to run a .m file I would be very appreciative. Thanks
참고 항목
카테고리
Help Center 및 File Exchange에서 Parallel Computing Fundamentals에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!