Pausing code for some time
조회 수: 4 (최근 30일)
이전 댓글 표시
How to pause the code execution for a given amount of time in matlab ( similar to Sleep() or delay() in c++)?
답변 (1개)
Manish Kumar
2020년 6월 26일
You can use pause function.
pause(n);
It will pause your code execution for n seconds.
pause(n);
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!