수색…


MATLAB의 간단한 타이머

다음은 일정한 간격으로 실행되는 타이머입니다. Timeout은 Period 정의되며 타임 아웃시 Timerfcn 에 정의 된 콜백을 호출합니다.

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
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow