How to refresh annotation after each frame?
10 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Phillip Foy
le 11 Oct 2018
Modifié(e) : Adam Danz
le 13 Août 2019
I am trying to insert an output in an annotation outside of my plot. The value just keeps stacking on top of each other until it is unreadable. When I use the delete(findall(gcf,'Tag','stream') function it will delete the annotation and not refresh it like I am trying to do. Any suggestions?
annotation('textbox', [0 .6 .1 .2],'String','500 MHz Max Gain Slope (dB):','EdgeColor','none');
annotation('textbox', [0 .55 .1 .2],'String',Delta_band,'EdgeColor','none','Tag','stream')
delete(findall(gcf,'Tag','stream'));
0 commentaires
Réponse acceptée
Image Analyst
le 11 Oct 2018
After you're done with each frame, call
drawnow;
to force immediate refresh/repainting of the screen.
2 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Entering Commands dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!