running live functions and having section breaks
13 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Roy Goodman
le 22 Fév 2021
Commenté : Roy Goodman
le 1 Avr 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 commentaires
Réponse acceptée
Aakash Mehta
le 31 Mar 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.
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Whos dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!