How to use pause in for loop?

57 views (last 30 days)
Muhammad Qaisar Fahim
Muhammad Qaisar Fahim on 18 Mar 2022
Commented: Voss on 18 Mar 2022
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

Accepted Answer

Voss
Voss on 18 Mar 2022
Edited: Voss on 18 Mar 2022
n=1000;
for k=1:n
B(k)=Ax(1,k)
C(k)=Bx(2,k)
if mod(k,100) == 0
pause(10);
end
end
  4 Comments
Muhammad Qaisar Fahim
Muhammad Qaisar Fahim on 18 Mar 2022
Thanks it help,. What i understand is its just creating a condition which is true according your situation and pause will be created. we can make other conditions too with this.
Voss
Voss on 18 Mar 2022
Exactly. You can make it pause (or do something else) under whatever condition you want.

Sign in to comment.

More Answers (0)

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Products


Release

R2022a

Community Treasure Hunt

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

Start Hunting!