running live functions and having section breaks
13 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Roy Goodman
am 22 Feb. 2021
Kommentiert: Roy Goodman
am 1 Apr. 2021
Before the advent of Live Script, I created a lot of demonstrations using publish and I would always create the demonstrations as functions rather than as simple scripts. This was to avoid having to use clear and close all at the beginning of the program, since entering the function allows you to create variables inside the function's own scope and publishing the code instead of running it the regular way uses entirely new figure windows.
Now I use Live Scripts to do the same thing. If the code is defined with a function command at the top line, then the "Run" button disappears from the editor. I also lose the ability to add section breaks.
My guess is the designers of MATLAB have a good reason for this, but I really miss it. Are there any workarounds?
I suppose this boils down to one question:
Is there a way, inside a live script, to use a variable scope other than the base workspace?
0 Kommentare
Akzeptierte Antwort
Aakash Mehta
am 31 Mär. 2021
To add the functions in the live script, include at least one line of script code before the local functions. Add all local functions at end of the file.
For more details refer to the following MATLAB answer.
https://www.mathworks.com/matlabcentral/answers/439671-why-i-cannot-define-a-function-in-live-script
Regarding the variable scope, local functions like all other functions have their own workspaces that are separate from the base workspace. That is also applicable for the functions in the live scripts.
For more details regarding workspaces in the script, refer to the following link.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Whos finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!