Bind plot with some figure
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I want to plot multiple plots on a figure. My flow is like below figure()//creates figure 1 h = figure() // creates figure 2 for(){ do Calculations; figure(h); plot();//should always plot on figure 2 }
Problem is if user manually moves focus from current figure1 to figure2 then it starts plotting on figure1.
Please suggest so plot() is drawn always on figure 2, irrespective of user moving focus from figure 2 to figure 1.
I have multiple figures like figure1, figure2, figure3 etc and cant stop user to move from one figure to another while above loop is plotting
0 commentaires
Réponse acceptée
OCDER
le 19 Juin 2018
In this case, you should specify which axes to plot on. See the example below:
%Initialize the figures
Gx = gobjects(1, 4);
Ax = gobjects(1, 4);
for k = 1:4
Gx(k) = figure(k);
Ax(k) = axes(Gx(k));
end
%Plot to the Nth figure
for k = 1:4
plot(Ax(k), rand(1, 10), rand(1, 10));
^ INCLUDE AXES HERE! %To plot to 1st figure, use Ax(1). 2nd figure, use Ax(2). etc.
end
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Creating, Deleting, and Querying Graphics Objects dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!