Effacer les filtres
Effacer les filtres

Is there a way to play audio/run a script when matlab debugger stops at a breakpoint?

19 vues (au cours des 30 derniers jours)
Hi, I would like matlab to play a sound or run a script when the program stops at a breakpoint. I run many copies of matlab simultaneously and it would great to be alerted when a particular script reaches a breakpoint. Does anyone know if this can be done?

Réponse acceptée

Walter Roberson
Walter Roberson le 17 Sep 2017
Write a small function
function t = notify()
beep();
t = true;
Now, when you set a breakpoint, make it a conditional breakpoint. For example instead of
dbstop at 18
use
dbstop at 18 if notify()

Plus de réponses (2)

Image Analyst
Image Analyst le 17 Sep 2017
Yes. When you're in the editor and going to click on a particular line to set a breakpoint there, just put a line before that line that says
beep();
or you can call soundsc() or audioplayer
[y, Fs] = audioread(filename);
player = audioplayer(y, Fs);
play(player);
Once you've successfully debugger your program you can always remove those lines.

Jan
Jan le 17 Sep 2017
This cannot work: What happens if the breakpoint is set in the code, which is called, when the breakpoint is reached? As soon as Matlab stops at the breakpoint, it stops the processing.
Note that Matlab's JIT acceleration cannot work efficiently, if breakpoints are set. This can slowdown the code by a factor of 2 or 20. Therefore if might be more useful to insert a specific command, which triggers the signal and stops by the keyboard command.

Catégories

En savoir plus sur Audio I/O and Waveform Generation 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