How can I detect how many instances of Matlab are currently running on my machine?

20 vues (au cours des 30 derniers jours)
In task manager you can see how many matlab.exe there are.
is it possible to tell this from inside a matlab function?
eg I have a m function runing, doing stuff, and every so often I ask, "how many instances of matlab are running?" If the number is less than 2 say, then I am able to call a bat file from system.m to open a new instance and run a new job.
I dont have any fancy toolboxes eg parallel computing etc thanks

Réponse acceptée

Jason Ross
Jason Ross le 22 Avr 2011
You can call the "tasklist" (DOS) function with some arguments that will tell you how many are running on the system. You can then parse the return and get a count.
e.g.:
>> [status,result] = system('tasklist /FI "imagename eq matlab.exe" /fo table /nh')
status =
0
result =
MATLAB.exe 5132 Console 1 359,184 K
MATLAB.exe 6028 Console 1 358,908 K
  3 commentaires
Jason Ross
Jason Ross le 22 Avr 2011
No problem, good luck with getting your processing going.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Startup and Shutdown dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by