Recherche…


Minuterie simple dans MATLAB

Ce qui suit est une minuterie qui se déclenche à intervalle fixe. Son délai d'attente est défini par Period et il appelle un rappel défini par Timerfcn lors de l'expiration du délai.

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
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow