How to opening 1 instance of MATLAB from MATLAB, but accessing it multiple times

55 visualizaciones (últimos 30 días)
Hello,
I would like to do the followings:
  1. From a MATLAB session, open another instance of MATLAB - which can be done by: !matlab &
  2. 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 comentarios
Ali Razavi
Ali Razavi el 17 de Ag. de 2021
Thanks for immediate response.
OS: Micorsoft Windows 10 Enetrprise
Raymond Norris
Raymond Norris el 17 de Ag. de 2021
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?

Iniciar sesión para comentar.

Respuesta aceptada

Raymond Norris
Raymond Norris el 18 de Ag. de 2021
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 comentarios
Raymond Norris
Raymond Norris el 19 de Ag. de 2021
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'
>>
Ali Razavi
Ali Razavi el 19 de Ag. de 2021
Thank you very much for all the valuable & useful help.
Have a pleasant time.

Iniciar sesión para comentar.

Más respuestas (2)

Ali Razavi
Ali Razavi el 18 de Ag. de 2021
Editada: Ali Razavi el 18 de Ag. de 2021
Hello,
Thanks.
Answering your questions:
Q1. Does the second MATLAB have to have its Desktop visible to interact with or does it suffice to be running in "headless" mode?
A1. It can be "headless" and run in background. No interaction via desktop needed.
Q2. Do you have the Parallel Computing Toolbox?
A2. No. However, I would like to know how to do this in both options (with and without Parallel Computing Toolbox ).
Many thanks for the help.

Walter Roberson
Walter Roberson el 18 de Ag. de 2021
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

Categorías

Más información sobre Parallel Computing Fundamentals en Help Center y File Exchange.

Productos


Versión

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by