Multiple GUI's together for the same program

6 vues (au cours des 30 derniers jours)
Amani
Amani le 27 Nov 2011
Commenté : Omer Yuval le 18 Oct 2020
Hi for everyone ,
I want to make 2 GUI's for my program How i can make them , and how i can linked them together by some buttons ?
Thnx ..
  3 commentaires
Amani
Amani le 27 Nov 2011
hmmm .. I mean that i wanna to make two windows , one of them get first as introductory , and if i click a button must show me the second window.
I hope you understood what i mean :(
Omer Yuval
Omer Yuval le 18 Oct 2020
https://uk.mathworks.com/matlabcentral/fileexchange/81348-gui_template

Connectez-vous pour commenter.

Réponse acceptée

Jared
Jared le 27 Nov 2011
Suppose you have 2 GUIs main and ext_plot you can open the 2nd GUI from main with the line
ext_plot;
You can pass variables using getappdata and setappdata suppose we want to pass a function into ext_plot to graph.
% In main
f = 'x^2+y^2';
setappdata(0, 'function', f);
ext_plot;
% In ext_plot
f=getappdata(0, 'function');
func=inline(f);
ezsurf(func,[-2 2]);
  1 commentaire
Amani
Amani le 28 Nov 2011
Thanxx alot :)
It is okay , but if i don't want the main still exist after the opening of ext_plot, what can i do ?
I mean the first must close after the second was opened.

Connectez-vous pour commenter.

Plus de réponses (1)

Image Analyst
Image Analyst le 27 Nov 2011

Catégories

En savoir plus sur Matrix Indexing dans Help Center et File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by