Display a plot from simulink in a seperate window to GUI
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Henry
am 8 Jul. 2013
Kommentiert: Ali Osman
am 1 Sep. 2015
Hi,
I'm using a GUI to run a simulink model and then plotting the results.
However, when i plot those results, the graph shows up in my GUI window behind the buttons/text boxes and is difficult to see.
Is there a way so that the plots will display in a new window? Much like they do when you select a scope in simulink for example.
Thanks
0 Kommentare
Akzeptierte Antwort
David Sanchez
am 8 Jul. 2013
You have several options for that. You could place an axes object within your GUI. This axes will have a tag assigned (see property inspector). Just tell plot where to plot the data by referencing your axes:
plot(X,Y,'Parent', handles.axes_tag)
3 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!