Passing base workspace variables to callback functions
14 次查看(过去 30 天)
显示 更早的评论
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 个评论
采纳的回答
Daniel Shub
2012-5-9
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.
更多回答(2 个)
Kevin Holst
2012-5-9
Have you tried using the evalin function, maybe something like:
x = evalin('base','var');
0 个评论
Walter Roberson
2012-5-9
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 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Whos 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!