MATLAB: How to open another GUI from the existing GUI

existingguiMATLABopenuiopen

I would like to open another existing GUI from the current GUI.

Best Answer

The existing GUI can be opened from the current GUI using the function UIOPEN.
% Include the following line in the callback of the uicontrol that intends to call an existing GUI.
uiopen('path to the existing fig file')