MATLAB: GUI question

guiMATLAB

i have the main gui window. can i open through a button an extra gui window to perform some tasks and then close it and continue working in the main window??

Best Answer

1. Build your other GUI.
2. Create the button in your main GUI and put code inside its click callback that invokes your new GUI. This will just be the base name of the M-file that your GUI is stored in.
Related Question