How to create global variables in a GUI m-file
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
To simplify the question, I will suppose a GUI including two buttons; button1 and button2. During the running of button1 callback the m code creates variables; some of these variables will be needed during the button2 callback. The question is: Can I create and set up global variables in a GUI m-file which could be used in all internal functions ?
0 Kommentare
Akzeptierte Antwort
Image Analyst
am 30 Dez. 2012
Place a line like
global myVariable1;
in every function that needs to see the variable. Functions without that line won't be able to see the variable.
For other recommended ways, see the FAQ: http://matlab.wikia.com/wiki/FAQ#How_can_I_share_data_between_callback_functions_in_my_GUI.28s.29.3F
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Interactive Control and Callbacks 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!