Link multiple MATLAB GUI's
I am making a series of GUI's.
On the first开发者_Python百科 GUI, I placed some push buttons. I don't know how to link each button to the other GUI's I have made.
In this video:
http://blogs.mathworks.com/videos/2005/10/03/guide-video-part-two/
I show how you can share data from one GUI to another. You are also able to call one GUI from another.
I typically recommend the following three general steps when creating a GUI app.
1) Designing the GUI Objects Layout
Making a list of tasks you want to accomplish using the GUI app
Creating a sketch of the GUI Layout
2) Defining the Default Properties of the GUI Objects (e.g., 'Visible','Enable','String','Position','Value', etc. of a Button)
3) Defining the Callback Actions of the GUI Objects (i.e., defining what happens when user presses the Button.)
精彩评论