Drawing figure in a for loop

2 次查看(过去 30 天)
S. David
S. David 2014-6-21
Hello all,
I have a for loop and I want to see the progress of the figure as the loop goes. Basically the code is like this:
SNRdB=0:20;
nErr=zeros(length(SNRdB),1);
for ii=1:length(SNRdB)
...
nErr(ii)=...
figure(1)
semilogy(SNRdB,nErr)
end
However, when I write it this way the figure is halted during the next loop and I cannot see it. How can I see the figure freely while the loop is running?
Thanks
  7 个评论
Star Strider
Star Strider 2014-6-21
Minimising it seems to be the problem.
Geoff Hayes
Geoff Hayes 2014-6-21
Right - and S. is minimizing it because he has other stuff to do and doesn't want to see that figure or have it occupy area on his screen. Only at some point later does S. want to review the figure to check the progress by "retrieving the figure frame from the task bar".

请先登录,再进行评论。

回答(2 个)

Star Strider
Star Strider 2014-6-21
The drawnow function and its friends will probably do what you want. The Example is fun to watch!
  2 个评论
S. David
S. David 2014-6-21
I did this, and it works as long as the update occurs while the figure is not minimized to the task bar.
The problem is that the update process takes too long, and thus I have to minimize the figure to the task bar to do something else. The update will occur randomly while the figure is minimized. So, when I press on the figure in the task bar to see it after the update, again, it is halted and I cannot see it!!
Star Strider
Star Strider 2014-6-21
编辑:Star Strider 2014-6-21
Nothing in the UI functions offers a solution, unfortunately.
My only suggestion is to not minimise it to the taskbar but position the figure off to the side, and then click on it when you want to see it. This is my usual strategy, but then I don’t know what’s on your desktop or how it’s organised.
You can also bring it to the foreground by clicking on it on the toolbar even when it’s not minimised. If you don’t minimise it, you may avoid the problem entirely.

请先登录,再进行评论。


Image Analyst
Image Analyst 2014-6-21
Why are you calling figure(1) at all? Just get rid of it. You can use maxfig (in MATLAB Central) to get the window state and if it's not minimized, call drawnow after you call plot.
  6 个评论
Image Analyst
Image Analyst 2014-6-22
Looks like they took it down. You can try this or try this

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by