handles object behaving like it was passed by value
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi all, I've developed a GUI with 3 simple buttons on it, with tags pb1, pb2, and pb3. I start by calling the GUI .m file, which initializes the handles object. The pb2 and pb3 buttons are initially invisible. When the callback function for pb1 is activated, pb1 is made invisible and pb2 and pb3 visible. Inside the pb1 callback code block another function is called with the handles object as an argument, which runs a psych experiment. Inside the psych experiment after a stimulus is presented, the program waits for a response from the user (using waitforbuttonpress). When the user clicks on pb2, handles.resp is set to 2, and when they click on pb3, handles.resp is set to 3, and the handles object is updated (handles.resp = 3; guidata(hObject, handles)). However, the handles object that was passed as an argument to the psych experiment function is not updated, so handles.resp winds up referring to the incorrect value. This suggests to me that the handles object is not behaving as if it were passed by reference. How do I pass the handles object by reference so its elements update properly?
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 8 Aug. 2011
handles is not passed by reference. If you update it in a subroutine then before you use it, you need to guidata() to get the updated structure.
2 Kommentare
Walter Roberson
am 8 Aug. 2011
The "handles" parameter used by GUIDE, the one fetched or stored by guidata(), is indeed *not* a member of the "handle" class. It is instead a structure that is passed by value. The structure is often used to hold values that _are_ members of the "handle" class, but the collection of handle class members is not itself a handle.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Handle Classes finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!