How can I force a figure to refresh?
81 ビュー (過去 30 日間)
古いコメントを表示
I have a figure that I am doing a lot of programtic manipulation to and after all of the code has executed, some of the elements either aren't visible, or the sizes are all wrong. However, if I simply grab the endge of the window and just slightly resize the figure, everything is refreshed and looks normal.
Before someone says "drawnow", I have tried "drawnow" in multiple locations. It seems like I need to flag the figure as dirty and then call "drawnow", but I haven't figured out a way to do that.
2 件のコメント
Askic V
2023 年 1 月 18 日
Did you check refreshdata from the documentation?
https://www.mathworks.com/help/matlab/creating_plots/making-graphs-responsive-with-data-linking.html
採用された回答
Image Analyst
2023 年 1 月 18 日
drawnow should work. Maybe it's some quirk of your video adapter. Have you tried the same program on someone else's computer? Or maybe on your second monitor, if you have one? We could try it if you upload your data and code.
3 件のコメント
Image Analyst
2023 年 1 月 18 日
You should call tech support, because drawnow should immediately repaint/refresh the current figure. Are you sure you didn't switch to a different figure right before you called drawnow.
drawnow has some options, like nocallbacks, so you might experiment with those.
drawnow nocallbacks
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Loops and Conditional Statements についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!