필터 지우기
필터 지우기

Varying timer's period inside the TimerFcn

조회 수: 4 (최근 30일)
Amira chriki
Amira chriki 2020년 4월 16일
답변: Ameer Hamza 2020년 4월 16일
Hello all,
My question is: it is possible to change the timer's period inside the TimerFcn?
Thanks

채택된 답변

Ameer Hamza
Ameer Hamza 2020년 4월 16일
This page mentions an approach to vary the period of timer: https://stackoverflow.com/questions/15576682/matlab-change-repeating-timer-period
Here I show the method mentioned in the second answer. This example sets a random time period between 1 to 5 seconds after each callback of timer.
t = timer('StartDelay', 1, 'TimerFcn', @timerFcn, ...
'StopFcn', @timerStopFcn, 'ExecutionMode', 'singleShot');
start(t);
function timerFcn(obj, ~)
disp(obj.StartDelay)
end
function timerStopFcn(obj, ~)
period = randi([1 5]);
obj.StartDelay = period;
start(obj);
end

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

태그

제품


릴리스

R2015a

Community Treasure Hunt

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

Start Hunting!

Translated by