Varying timer's period inside the TimerFcn

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 日

0 投票

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 件)

カテゴリ

ヘルプ センター および File ExchangeCode Execution についてさらに検索

製品

リリース

R2015a

タグ

質問済み:

2020 年 4 月 16 日

回答済み:

2020 年 4 月 16 日

Community Treasure Hunt

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

Start Hunting!

Translated by