Azzera filtri
Azzera filtri

How to take output from another m file in gui?

1 visualizzazione (ultimi 30 giorni)
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 Commento
Rohan Ghare
Rohan Ghare il 13 Giu 2013
the out put of m file is plot which is in another figure window then how can it display in that gui

Accedi per commentare.

Risposta accettata

David Sanchez
David Sanchez il 13 Giu 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 Commenti
Walter Roberson
Walter Roberson il 14 Giu 2013
Do not include the ".m" extension.
function my_push_callback(src, event)
my_m_file();
end
rohit
rohit il 2 Set 2020
If you are using App designer:
plot(app.UIAxes,x,y);

Accedi per commentare.

Più risposte (1)

Vishal Rane
Vishal Rane il 13 Giu 2013
Refer these :

Categorie

Scopri di più su Migrate GUIDE Apps in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by