Refresh annotate on figure in loop

22 次查看(过去 30 天)
Tharon
Tharon 2020-10-7
评论: Tharon 2020-10-9
Hello.
I have read several other solutions that use various methods to replace an annotation with each figure refresh, but none of them seem to work for me. The annotations just keep stacking to the side of the first.
I've tried the solutions found here (to no avail):
figure;
a1 = [];
a2 = [];
for k = 1:K
%compute indices for the current frame
n = (1:N)+(N*(k-1));
%signal 1
x = s1(n);
E_m1(k) = (x'*x)/N; %Normalized frame energy
subplot(211);
plot(n,s1(n),'b',n,e(n),'g:');
%annotation stuff
str1 = sprintf('NFE %d', E_m1);
dim1 = [0.662 0.622 .3 .3];
delete(a1);
a1 = annotation('textbox',dim1,'string',str1,'FitBoxToText','on');
%pause between frames, waiting for keypress
pause(1)
end
Thanks for your time.

回答(1 个)

Rik
Rik 2020-10-8
Create the annotation object once, and update the String property inside your loop.
I would suggest drawnow to trigger the update of the graphics and to process any queued callbacks (e.g. those triggered by keypresses).
  4 个评论
Tharon
Tharon 2020-10-8
Thank you, I will try this soon.
Tharon
Tharon 2020-10-9
Thanks for all of your help so far Rik, but I am still having trouble. I implemented the changes you suggested. Now it seems that instead of stacking the new annotations to the right, it stacks them under the previous:

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Graphics Object Programming 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by