how can i plot in axes in other figure
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
ali hadjer
am 3 Nov. 2015
Kommentiert: ali hadjer
am 3 Nov. 2015
i have a figure 1 and i wish plot in axes 2 in figure2 within a callback push bouton of the first figure????????? i will be presaure
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 3 Nov. 2015
If ax2 is a handle to the appropriate axes in figure 2, then
plot(ax2, .... whatever you want to plot)
For example
fig2 = figure(2);
ax2 = findobj(fig2, 'tag', 'axes2'); %retrieve the handle from the figure
plot(ax2, t, pressure);
1 Kommentar
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Graphics Object Properties finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!