How to take output from another m file in gui?

hi, I am rohan, I have new to gui , i want to make gui in which when I chick to push button one program should run (which is having plot of sine wave) but that output can show in gui axes again can anyone help me out please?

1 comentario

Rohan Ghare
Rohan Ghare el 13 de Jun. de 2013
the out put of m file is plot which is in another figure window then how can it display in that gui

Iniciar sesión para comentar.

 Respuesta aceptada

David Sanchez
David Sanchez el 13 de Jun. de 2013
to run any other m-file from the GUI, just make a call to the desired m-file on the pushbutton callback function.
function my_push_callback(...)
my_m_file.m;
To plot to axes within the GUI, take note of the tag assigned to the axes in property manager:
plot(x,y,'Parent',handles.axes_tag)

3 comentarios

Rohan Ghare
Rohan Ghare el 13 de Jun. de 2013
can u please explain with example?
Do not include the ".m" extension.
function my_push_callback(src, event)
my_m_file();
end
If you are using App designer:
plot(app.UIAxes,x,y);

Iniciar sesión para comentar.

Categorías

Más información sobre Interactive Control and Callbacks en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 13 de Jun. de 2013

Comentada:

el 2 de Sept. de 2020

Community Treasure Hunt

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

Start Hunting!

Translated by