How can I stop execution of a live script?

65 visualizaciones (últimos 30 días)
Stefano Pietrosanti
Stefano Pietrosanti el 9 de Ag. de 2017
Editada: Stefano Pietrosanti el 28 de Ag. de 2018
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.

Respuesta aceptada

Baptiste Ottino
Baptiste Ottino el 9 de Ag. de 2017
Editada: Baptiste Ottino el 9 de Ag. de 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!

Más respuestas (0)

Categorías

Más información sobre Get Started with MATLAB en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by