How to write a subfunction inside a GUI function?
1 view (last 30 days)
Show older comments
I Would like to write a subfunction or subscript inside a GUI, but not a callback function, and I want to use any kind of global variables inside this function or subscript, or create new global variables in it. Is it possible?
0 Comments
Answers (1)
Walter Roberson
on 28 May 2023
Yes, it is possible.
In the case of App Designer you might have to define the function in a separate .m file if it is not a callback function and is not part of a constructor or method.
If you are using App Designer, it is not clear there is any point in using a global variable instead of a property of the class -- not unless, perhaps, you are working with multiple apps and wanting to communicate between them.
We recommend against using global variables in most cases; they are the slowest form of shared variable, and the more error-prone.
4 Comments
See Also
Categories
Find more on Develop Apps Using App Designer in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!