Passing base workspace variables to callback functions
15 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I have created a GUI using the UI commands and I want to pass variables from the base workspace into the callback function for one of the buttons to use in calculations when I click it.
uimenu(menu_options_h,'Label', 'Save Calibrations','Callback', {@cal_save});
function load_cals_callback(source, eventdata) %#ok<INUSD>
_Some Code_
end
I have tried {@cal_save(x)}, {@(x) cal_save,x} and some others. One solution I can think of is to make all of my base workspace variables global but that would be bad programming practice.
0 commentaires
Réponse acceptée
Daniel Shub
le 9 Mai 2012
What you are trying to do is difficult because it is bad programming practice with or without using globals. Basically you are trying to poof variables from your base workspace into you callback workspace.
A better approach would be to load the variables in a controlled manner into the GUI workspace and then pass them into the callback workspace. The loading into the GUI could be through text boxes, a load file box, or even a load data box (where evalin might be both useful and acceptable). Once loaded into the GUI you can share them with the callback like any other data.
Plus de réponses (2)
Kevin Holst
le 9 Mai 2012
Have you tried using the evalin function, maybe something like:
x = evalin('base','var');
0 commentaires
Walter Roberson
le 9 Mai 2012
The only way for an anonymous function to "capture" a reference to the base workspace is for the anonymous function to be created inside a script that is executed before any function is created. You would need a "get" function and a "set" function if you wanted to be able to read and write the variable.
Is there a reason that it is necessary that the base workspace be the one? It would make more sense (I think) to use nested routines and shared variables.
0 commentaires
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!