How to use pause in for loop?

조회 수: 41 (최근 30일)
Muhammad Qaisar Fahim
Muhammad Qaisar Fahim 2022년 3월 18일
댓글: Voss 2022년 3월 18일
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

채택된 답변

Voss
Voss 2022년 3월 18일
편집: Voss 2022년 3월 18일
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
Muhammad Qaisar Fahim
Muhammad Qaisar Fahim 2022년 3월 18일
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 2022년 3월 18일
Exactly. You can make it pause (or do something else) under whatever condition you want.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

태그

제품


릴리스

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by