Can I supress a flashing title bar when refreshing plots?

조회 수: 6 (최근 30일)
Dara Parsavand
Dara Parsavand 2012년 2월 15일
댓글: Dara Parsavand 2017년 3월 21일
I've looked at the doc page for figure properties and I don't see that this is possible, but perhaps it is. My question is probably OS specific (using Windows XP Pro now, will try this in Redhat as well): Can one move between different plot windows and refresh the plot, e.g.
figure(1), plot([1 2], [3 4]) figure(2), plot([5 6], [7 8])
and not have the title bars (the very top bar that says Figure 1 or 2) flash?
My application is trying replace the Simulink visualization tools (which in general are very unsatisfying) with S-function tokens that drive normal MATLAB plots. One issue though is that on every refresh the plot is flashing at you (which the Simulink version does not do). But in general, anyone who loops over a plotting line of code and wants to show an animated plot could benefit from controlling this behavior.
Thanks, Dara

채택된 답변

Walter Roberson
Walter Roberson 2012년 2월 15일
Maybe. If you set() the figure to visibility 'off', update the plot, and set the visibility 'on' then the updates flash less.
  댓글 수: 1
Dara Parsavand
Dara Parsavand 2017년 3월 21일
Walter, Thanks for your idea. I forgot about my question until reviewing all my posts (must have found another solution - Simulink plotting has been getting better too). I did try this code just for fun:
%%test_plot_animation.m
% run once - then separate the two plots on the screen, then run again.
figure(1), plot([1 2], [3 4])
figure(2), plot([1 1], [5 4])
for i = 1:100
figure(1), set(gcf, 'visible', 'off'), plot([1 2], [3 4+i/1000]), set(gcf, 'visible', 'on')
figure(2), plot([1 2], [5 4+i/1000])
pause(0.01)
end
It doesn't result in a difference between figure 1 and 2 that I can see, but perhaps if it was a more complicated plot, the duration of the title bar flash could be shorter and maybe I would see less flashing. This flash seems like something that would be nice to control better, but it isn't as big a deal to me anymore.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Annotations에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by