How to store info to 'handles' in a local function in GUIDE?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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?
Respuestas (1)
TastyPastry
el 10 de Jun. de 2016
Try changing the single input call of guidata() to
handles = guidata(hObject);
Ver también
Categorías
Más información sobre Migrate GUIDE Apps en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!