Multiple GUI's together for the same program
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Amani
el 27 de Nov. de 2011
Comentada: Omer Yuval
el 18 de Oct. de 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 comentarios
Omer Yuval
el 18 de Oct. de 2020
https://uk.mathworks.com/matlabcentral/fileexchange/81348-gui_template
Respuesta aceptada
Jared
el 27 de Nov. de 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]);
Más respuestas (1)
Ver también
Categorías
Más información sobre Matrix Indexing en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!