Subtract 1 from variable each second

조회 수: 2 (최근 30일)
Martin
Martin 2021년 6월 10일
댓글: Jan 2021년 6월 10일
Imagine I got something like this:
counter = 100;
while true
do_something=true;
pause(rand);
disp(counter);
end
Then I need the counter variable to get subtracted by 1 each second inside the while loop. Any suggestions?

채택된 답변

Jan
Jan 2021년 6월 10일
counter = 100;
TimerH = timer('TimerFcn', @doCount, 'ExecutionMode', 'fixedRate', ...
'Period', 1.0, 'UserData', counter);
start(TimerH);
while true
do_something=true;
pause(rand);
counter = TimerH.UserData;
disp(counter);
end
delete(TimerH);
function doCount(TimerH, EventData)
TimerH.UserData = TimerH.UserData - 1;
end
Do you really need an active counter?
iniTime = clock;
while true
do_something=true;
pause(rand);
counter = 100 - etime(clock, iniTime);
disp(counter);
end
  댓글 수: 3
Martin
Martin 2021년 6월 10일
me2, thanks!
Jan
Jan 2021년 6월 10일
@Mathieu NOE: And it even counts backwards from 100 for 3 weeks. :-)

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

추가 답변 (1개)

Mathieu NOE
Mathieu NOE 2021년 6월 10일
hi
nothing fancy
counter = 100;
while true
do_something=true;
counter = counter -1; % decrement counter
pause(1); % 1 second pause
disp(counter);
end
  댓글 수: 3
Mathieu NOE
Mathieu NOE 2021년 6월 10일
so how do you plan to get the counter decremented every second ??
Martin
Martin 2021년 6월 10일
편집: Martin 2021년 6월 10일
yeah thats my question :) I guess I need to use
now
(before the loop) and also indside the loop, but I have hard times figure it out which is why I am asking

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

카테고리

Help CenterFile Exchange에서 Programming에 대해 자세히 알아보기

제품


릴리스

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by