How can I update 2 separate figures without opening new figures?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Keith Grey
le 18 Juin 2020
Réponse apportée : madhan ravi
le 18 Juin 2020
When plotting 1 figure, hold on works fine. With two figures, it keeps opening a new window. How can I make 2 figures, and update lines on them?
FREQ = 1:100;
figure()
plot(min(FREQ):max(FREQ), 20*log10(Z))
hold on
figure()
plot(min(FREQ):max(FREQ), 20*log10(ZC))
hold on
0 commentaires
Réponse acceptée
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Interactive Control and Callbacks 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!