LIve editor: invalidate section
Mostra commenti meno recenti
Some of my scripts have side effects, whilst I appreciate that this isn't optimal design, the live editor appears to make life difficult, because once one has run a section, it doesn't appear to be easy to 're-run' it. It feels like matlab is trying to be too clever. It thinks the section is run, and so it won't re run it. until after I edit the section. Which is annoying, I just want to re run it.
Is there a way to 'invalidate the result of all sections' in a live script without having to edit each?
1 Commento
Simon Parten
il 10 Nov 2017
Risposte (1)
Steven Lord
il 10 Nov 2017
0 voti
2 Commenti
Simon Parten
il 10 Nov 2017
Modificato: Simon Parten
il 10 Nov 2017
Steven Lord
il 10 Nov 2017
What gave the appearance that the section did not re-run? Were you expecting the variables it generated to appear in the base workspace?
If that was what you expected, when you're debugging you're operating in the workspace of the function you're debugging. That allows you to view and modify the values of the variables in that workspace to try to identify the cause of the problem that led you to debug in the first place.
If you run a script during that time, the variables get created in the function's workspace. It doesn't matter whether the script is somehow "associated" with the function being debugged or a completely separate file in a whole other directory.
Once your debugging ends (either by letting the function run to the end or by dbquit) the function workspace goes away as do the variables you created inside it by running that section of your script.
If there was some other reason that made you believe the section was not re-run, can you explain in a little more detail what that reason was?
Categorie
Scopri di più su File Operations in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!