Is it possible to tell when Matlab is busy executing?

85 vues (au cours des 30 derniers jours)
Jim Hokanson
Jim Hokanson le 13 Juin 2015
Modifié(e) : Tien le 7 Avr 2024 à 15:44
Is it possible to tell when Matlab is busy executing? I'd like to run some code on a timer but I'd rather not execute the main portion of the function if Matlab is currently executing other code (besides other timers or GUI functions).
Thanks, Jim
  3 commentaires
Walter Roberson
Walter Roberson le 13 Juin 2015
I think the point is to determine by code whether MATLAB is busy.
Jim Hokanson
Jim Hokanson le 13 Juin 2015
Walter is correct, although if no other option were present, looking for the absence of >> would be a decent hack that is possible to do by code. Fortunately I think Jan's approach will work much better.

Connectez-vous pour commenter.

Réponse acceptée

Jan
Jan le 13 Juin 2015
isBusy = CmdWinTool('isBusy')
If a program is running, the command window's status text is set to 'Busy'. This does not happen inside a callback of a timer object. So this status text can be used to determine if Matlab is busy.
CmdWinTool assumes, that Matlab is busy, when the status text is not empty. This happens also, if you stop during the debugging.
  2 commentaires
Jim Hokanson
Jim Hokanson le 13 Juin 2015
Great. Thanks!
I actually want my code to be running while debugging. Is there any reason why you are avoiding looking for 'Busy'?
Jan
Jan le 13 Juin 2015
An active timer callback might be very confusing during debugging. When Matlab stops in a line I expect that the internal state freezes. But you can replace CmdWinToll('isBusy') by:
~strcmpi(CmdWinTool('statusText'), 'Busy')

Connectez-vous pour commenter.

Plus de réponses (2)

DZ
DZ le 1 Nov 2021
One way I insert a bit of "meta" info on the status of a Matlab instance is via the Window title.
To set the title of the running Matlab instance,
com.mathworks.mlservices.MatlabDesktopServices.getDesktop.getMainFrame.setTitle()
To retrieve the title of the running Matlab instance,
com.mathworks.mlservices.MatlabDesktopServices.getDesktop.getMainFrame.getTitle()
So at the start of any function, you can insert a phrase such as '[High Priority]' for the function that you don't want interrupted. I also like to include the PID for general debugging purpose. At the end any function in your library, search for and remove the tag and maybe insert a tag like '[Task Complete]', which makes an idling Matlab instance easier to spot visually in Windows. Functions below may be of help:
contains()
erase()
feature('getpid')
In your timer triggered function, you can simply check for tag in the window title before proceeding to the rest of the function.
Now, the timer triggered function will still interrupt any running function for a brief moment. So you may want to include a component of your code that handles timer interruption -- whether the control is handed back immediately or after your timer triggered function actually ran for a while.

Tien
Tien le 7 Avr 2024 à 15:43
Modifié(e) : Tien le 7 Avr 2024 à 15:44
I try to calculateIntraScore Hyperspectral raw file and it's busy for a long time :((
I do not know what is MATLAB doing?

Catégories

En savoir plus sur Environment and Settings dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by