MATLAB: Plot figure on open GUI instead of new figure window

MATLABplot figure on open gui instead of new figure window

Hello Together,
I have a GUI where i call the main funtion via callback function of GUI.
the main function open another figure window , i would like to open this figure on gui itself
could you please do help me out how shall i proceed with it ?
thank you

Best Answer

axes(handles.axes1);
imshow(yourimage);
Related Question