How can I stop execution of a live script?

63 次查看(过去 30 天)
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.

采纳的回答

Baptiste Ottino
Baptiste Ottino 2017-8-9
编辑:Baptiste Ottino 2017-8-9
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!

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Get Started with MATLAB 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by