For statement - print on exactly 1 second
조회 수: 27 (최근 30일)
이전 댓글 표시
Hi!
I want to print some text (ex. test) 20 times, every 1 second. I tried with for statement:
close all;
clear all;
tic
for i=1:20
toc
disp('test');
pause(i-toc);
end
If I run this code, I see that time drifts also for 20 ms from whole second (I know that It depends on many things, occupancy of CPU is for ex. one thing). Is any other option to come closer to the whole second?
Thank you! Best regards, Dejan
댓글 수: 0
채택된 답변
Jan
2017년 2월 11일
편집: Jan
2017년 2월 11일
java.lang.Thread.sleep(t*1000) than is more accurate than pause(t)
tic;
for i=1:20
toc
disp('test');
java.lang.Thread.sleep((i-toc)*1000);
end
["test" removed for compactness]
Elapsed time is 0.008428 seconds.
Elapsed time is 1.000497 seconds.
Elapsed time is 1.999536 seconds.
Elapsed time is 2.999586 seconds.
Elapsed time is 4.000012 seconds.
Elapsed time is 4.999816 seconds.
Elapsed time is 5.999633 seconds.
Elapsed time is 6.999679 seconds.
Elapsed time is 7.999731 seconds.
Elapsed time is 8.999758 seconds.
Elapsed time is 9.999807 seconds.
Elapsed time is 10.999854 seconds.
Elapsed time is 11.999904 seconds.
Elapsed time is 12.999952 seconds.
Elapsed time is 13.998999 seconds.
Elapsed time is 14.999047 seconds.
Elapsed time is 15.999100 seconds.
Elapsed time is 16.999148 seconds.
Elapsed time is 17.999193 seconds.
Elapsed time is 18.999260 seconds.
See http://undocumentedmatlab.com/blog/pause-for-the-better . But my measurements with pause look fairly accurate also.
Use a timer for triggering code after certain times.
추가 답변 (2개)
Image Analyst
2017년 2월 11일
Instead of pause(i-toc), use pause(1). Your way did not pause exactly 1 second every time - the time changed upon each iteration.
댓글 수: 1
Image Analyst
2017년 2월 11일
If the time to complete each iteration changes, then you can use while and toc:
for i = 1 : 20
startTime = tic;
% Lengthy and variable code...
% Wait until 1 second has passed
elapsedTime = toc(startTime); % In seconds
while elapsedTime < 1
elapsedTime = toc(startTime); % In seconds
end
end
참고 항목
카테고리
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!