How can I stop execution of a live script?

77 vues (au cours des 30 derniers jours)
Stefano Pietrosanti
Stefano Pietrosanti le 9 Août 2017
How can I stop execution when running a single section of a live script? CTRL+C in the command window does not seem to work, the only option seems to kill the Matlab process.
[EDIT] This issue seems to be solved in matlab version 2018a.
  1 commentaire
Sonia Joy
Sonia Joy le 27 Août 2018
Try the 'return' key. It just worked for me.

Connectez-vous pour commenter.

Réponse acceptée

Baptiste Ottino
Baptiste Ottino le 9 Août 2017
Modifié(e) : Baptiste Ottino le 9 Août 2017
Hi,
The function that the live editor uses to exectute a livescript is the following:
matlab.internal.richeditor.executeAndSave(filePath)
Note that filePath is the full path to the mlx file, otherwise it will return an error. If you run it in the command window, you can then interrupt the execution of the live script by using Ctrl + C, as usual. If you find the feature useful, you can program a shortcut script for it.
However, executeAndSave, as the name suggests, not only executes the mlx file, but also saves the resulting code output and figures, meaning that interrupting it can cause some unexpected errors (I have encountered one during my few minutes of testing, so they must be quite frequent), and you have to close the Matlab process entirely. Which is why I suppose the feature to interrupt live script execution wasn't added in the first place.
This answer probably won't solve your issue, but you are now at least more aware of the latent reason for it. Good luck!

Plus de réponses (0)

Catégories

En savoir plus sur Get Started with MATLAB 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