MATLAB: Updating a GUI image (axes) from external function

guiguidehandles

Hey,
I want to update an image in the GUI from an external function. What I've found:
handles.image = image;
guidata(handles.axes1,handles.image??)
Axes has no callback function so I don't know where to start. And how do I specify which GUI I want to update?

Best Answer

imagesc(image, 'Parent', handles.axes1) solved my problem.