Getting the output from a callback in main function
Show older comments
I have the following simple problem. I have created a gui and I would like to get the output of the callback function in main function. A simplified version of my gui is this:
function aGui
a=0;
uicontrol( ...
'Style' , 'Slider' , ...
'max' , 10 , ...
'min' , 0 , ...
'value' , 0 , ...
'sliderstep', [1/10 1/10] , ...
'units' , 'norm' , ...
'position' , [0.11 0.13 0.5 0.05] , ...
'Callback' , {@clbk, a});
end
function clbk(varargin)
sliderH=varargin{1};
a=varargin{3};
b=a-get(sliderH, 'value');
set(sliderH, 'userdata', b);
out=get(sliderH, 'userdata');
end
So when I call out=aGui the output argument out will be the output from the callback. I would ptefer not to use assignin.
Answers (2)
Image Analyst
on 15 Sep 2013
You have to define your function such that it returns the value:
function aGui
a=0;
hSlider = uicontrol( ...
'Style' , 'Slider' , ...
'max' , 10 , ...
'min' , 0 , ...
'value' , 0 , ...
'sliderstep', [1/10 1/10] , ...
'units' , 'norm' , ...
'position' , [0.11 0.13 0.5 0.05] , ...
'Callback' , {@clbk, a});
end
% Now call the function clbk():
out = clkbk(hSlider); % "theResult" will get stuffed into "out".
function theResult = clbk(varargin)
% It's code goes here...
5 Comments
Giorgos Papakonstantinou
on 15 Sep 2013
Image Analyst
on 15 Sep 2013
Try it like this:
function out= aGui()
clc;
a=0;
hSlider = uicontrol( ...
'Style' , 'Slider' , ...
'max' , 10 , ...
'min' , 0 , ...
'value' , 0 , ...
'sliderstep', [1/10 1/10] , ...
'units' , 'norm' , ...
'position' , [0.11 0.13 0.5 0.05] , ...
'Callback' , {@clbk, a});
% Now call the function clbk():
out = clbk(hSlider, a); % "theResult" will get stuffed into "out".
end
function theResult = clbk(varargin)
% It's code goes here...
% function res=clbk(varargin)
%
hSlider = varargin{1}
a = varargin{3}
b = a - get(hSlider, 'value')
theResult = b % How I'd do it.
% How you want to do it for some reason:
set(hSlider, 'userdata', b);
theResult=get(hSlider, 'userdata')
end
If you're going to build GUI's the tediouis way by specifying each and every control, including it's position and values and everything else, instead of using GUIDE, then you'd better study all of Matt Fig's 41 examples of how to build a GUI manually. http://www.mathworks.com/matlabcentral/fileexchange/24861-41-complete-gui-examples Or this: http://blogs.mathworks.com/pick/2007/12/28/matlab-basics-guis-without-guide/
If you want an easier time then see this:
or just start using this framework which has all the basic controls and all you have to do it to plug your code into the callbacks. http://www.mathworks.com/matlabcentral/fileexchange/24224-magic-matlab-generic-imaging-component
Giorgos Papakonstantinou
on 16 Sep 2013
Edited: Giorgos Papakonstantinou
on 16 Sep 2013
Walter Roberson
on 16 Sep 2013
Edited: Image Analyst
on 16 Sep 2013
You want the main function to be re-run each time the slider is changed? If not, then since "out" is the output of the main function, where should the new value of the slider be delivered to?
Image Analyst
on 16 Sep 2013
You're making this way too complicated. Just use GUIDE and it will be a lot simpler. You can have a callback that does stuff, such as create and/or modify other variables that are available to you via the link Walter gave you. Or, in your main program you can get the slider value directly whenever you need it with a simple line
sliderValue = get(handles.slider1, 'Value');
because it's value is stored in the "handles" structure which is pretty much global everywhere (at least to all the callbacks, though to your own custom functions only if you pass it in.) Please look at Doug Hull's tutorial.
Walter Roberson
on 15 Sep 2013
0 votes
Before the get() of the value, insert a drawnow() or pause() to give a chance for the user to update the value. But consider also using waitfor() or uiwait(), or using a modal figure,
3 Comments
Giorgos Papakonstantinou
on 15 Sep 2013
Giorgos Papakonstantinou
on 15 Sep 2013
Walter Roberson
on 15 Sep 2013
Each get() only fetches the value as of the time of that get(). If you later want the new value, then get() again. If you want "out" to be recalculated by the callback of the slider, then put the calculation there but share "out" with the places you need the value. See
Categories
Find more on Graphics Objects 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!