MATLAB: I get a Dumthe GUI that Doesn’t really work when accessed from the Popup menu using Run command.Any Solution

guide

Using run command I can open the GUI from another GUI from PopUp menu/Push Button but it does not actually run. Just a dummy GUI. What can i do ?

Best Answer

Don't use the run command. (Maybe you were passing the .fig filename instead of the .m filename???)
Just put the name of the GUI by itself, along with any arguments you want to pass to it. Again, don't use run - I never ever do, and I run GUI's and have GUIs call other GUIs all the time.
Related Question