Accessing variables between pushbuttons in MATLAB GUI

Hi,
I have two pushbuttons in MATLAB GUI. When I press one pushbutton it executes certain set of codes including function call. The variables returned by this function call need to be sent to the function call which executes when other push button is pressed. But, I get the following error:
Error using hg.uicontrol/get The name 'MySet' is not an accessible property for an instance of class 'uicontrol'.
Error in test3>pushbutton_forfind_Callback (line 481) MySet = get(handles.pushbutton1,'MySet');
Error in gui_mainfcn (line 96) feval(varargin{:});
Error in test3 (line 42) gui_mainfcn(gui_State, varargin{:});
Error in @(hObject,eventdata)test3('pushbutton_forfind_Callback',hObject,eventdata,guidata(hObject))
Error while evaluating uicontrol Callback
MySet is the variable returned by function called by first pushbutton which needs to be passed to another function call in second pushbutton. How can I resolve this error?
Thanks.

 채택된 답변

Sean de Wolski
Sean de Wolski 2012년 7월 30일

0 개 추천

How are you setting 'MySet' to be a field of handles? You need to use either setappdata & getappdata or guidata.

댓글 수: 3

I m doing this in function call of pushbutton 1:
handles.MySet = MySet;
guidata(hObject, handles);
Then retrieving in another pushbutton2 by:
MySet = get(handles.pushbutton1,'MySet');
Just
MySet = handles.MySet;
Thanks a lot for pointing out this. I am so happy that it worked.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Creating, Deleting, and Querying Graphics Objects에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by