Create and open new fig
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Ryan Sinfield
el 9 de Nov. de 2016
Respondida: Geoff Hayes
el 11 de Nov. de 2016
I have a main fig file for my matlab gui, and I have created another one that I want to be able to open with the click of a button. How?
function NewWindowButton_Callback (hObject, eventdata, handles)
% Open the new window - otherwindow.fig -
0 comentarios
Respuesta aceptada
Geoff Hayes
el 11 de Nov. de 2016
Ryan - if you mean that you have created another GUI (using GUIDE) and you wish to open that other GUI from within the first one, then you can just call it as
function NewWindowButton_Callback(hObject, eventdata, handles)
% call your other GUI
OtherGui;
where OtherGui is the name of your other GUI (the name for the m and fig files).
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Interactive Control and Callbacks 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!