Buscar..


Temporizador simple en MATLAB

El siguiente es un temporizador que se dispara en un intervalo fijo. Su tiempo de espera está definido por Period e invoca una devolución de llamada definida por Timerfcn en el tiempo de espera.

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
Licenciado bajo CC BY-SA 3.0
No afiliado a Stack Overflow