I am creating a GUI in Matlab's Guide which should display a video and a plot saved in a .fig file. I am currently trying to open the plot in an axes element and while I know axes cannot be a container, the possibility of saving the plot in a another object and feeding that object to axes seems like a solution, but I don't know how to do that due to limited Matlab knowledge. Here is the only code I have for the button at the moment which allows me to open a file from my local directory.
% --- Executes on button press in pushbutton2.
function pushbutton2_Callback(hObject, eventdata, handles)
axes(handles.axes1);
[file,path] = uigetfile('*.fig');