How to use pause in for loop?
40 次查看(过去 30 天)
显示 更早的评论
I want to run a for loop for 1000 times and after every 100 run I want to pause it for 10 sec. How can I do that? With below function I think it will pause for every iteration.
n=1000;
for k=1:n
pause(10);
B(k)=Ax(1,k)
C(k)=Bx(2,k)
end
0 个评论
采纳的回答
更多回答(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!