LIve editor: invalidate section
Show older comments
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 Comment
Simon Parten
on 10 Nov 2017
Answers (1)
Steven Lord
on 10 Nov 2017
0 votes
2 Comments
Simon Parten
on 10 Nov 2017
Edited: Simon Parten
on 10 Nov 2017
Steven Lord
on 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?
Categories
Find more on File Operations in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!