MATLAB: Handles object behaving like it was passed by value

handles

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?

Best Answer

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.