对于较新版本的matlab(亲测matlab 2010版无效)可以使用以下语句来避免弹窗:
handle=figure;
set(0, 'currentFigure', handle);
例子:
h=figure(1);
for i=1:100
set(0, 'currentFigure', h);
plot([1:10],[1:10]);
pause(1);
end
对于较新版本的matlab(亲测matlab 2010版无效)可以使用以下语句来避免弹窗:
handle=figure;
set(0, 'currentFigure', handle);
例子:
h=figure(1);
for i=1:100
set(0, 'currentFigure', h);
plot([1:10],[1:10]);
pause(1);
end