Sök…


Enkel timer i MATLAB

Följande är en timer som avfyras med ett fast intervall. Det är timeout definieras av Period och det åberopar ett återuppringning som definieras av Timerfcn vid 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
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow