How to store info to 'handles' in a local function in GUIDE?

2 次查看(过去 30 天)
I have a GUI file I created using GUIDE, and within it there are the built in callbacks but I also want to create some of my own local functions. With these functions I'd like to be able to both access and store the handles structure that contains basically all the info for my GUI, but I am doing something wrong and just cannot figure out what it is. I believe I should be able to feed hObject, eventdata, and handles into the function, load in guidata, and store it using guidata(hObject, handles) - or at least that's what I got from the site about 'guidata'. I made a super simple code to look into this and still couldn't figure it out, so please tell me what I'm doing wrong. Thanks for the help.
function Problem(hObject, eventdata, handles)
guidata(hObject);
handles.NewValue = 5;
guidata(hObject,handles);
Now it's my understanding that after this subfunction is called, from there on out I should be able to access handles.NewValue, which has '5' stored as its value. Is this correct?
  1 个评论
jmp448
jmp448 2016-6-10
Maybe it's an issue with my calling of the function? I thought that if I had this stretch of code anywhere in my script, I should be able to include the lines
Problem(hObject,eventdata,handles);
handles.NewValue
and it would display the NewValue of 5

请先登录,再进行评论。

回答(1 个)

TastyPastry
TastyPastry 2016-6-10
Try changing the single input call of guidata() to
handles = guidata(hObject);

类别

Help CenterFile Exchange 中查找有关 Migrate GUIDE Apps 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by