Ricerca…


Semplice timer in MATLAB

Quello che segue è un timer che si attiva a intervalli fissi. Il timeout è definito da Period e richiama un callback definito da Timerfcn al timeout.

t = timer;
t.TasksToExecute = Inf;
t.Period = 0.01; % timeout value in seconds
t.TimerFcn = @(myTimerObj, thisEvent)disp('hello'); % timer callback function
t.ExecutionMode = 'fixedRate';
start(t)
pause(inf);


Modified text is an extract of the original Stack Overflow Documentation
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow