start
타이머 시작
구문
설명
예제
타이머 시작하기
start
를 사용하여 타이머를 시작합니다.
StartFcn
콜백으로 "timer started." 메시지를 표시하고 TimerFcn
콜백으로 난수를 생성하는 타이머를 만들고 시작합니다. 타이머를 삭제합니다.
t = timer('StartFcn',@(~,~)disp('timer started.'),... 'TimerFcn',@(~,~)disp(rand(1))); start(t) delete(t)
timer started. 0.9706
rand
의 출력값은 계속 달라집니다.
여러 타이머 시작하기
start
를 사용하여 여러 개의 타이머를 시작합니다.
StartFcn
콜백에 대해 메시지를 표시하는 3개의 타이머를 만들고 시작합니다. TimerFcn
콜백으로 pi/4
의 사인, 코사인, 탄젠트를 계산합니다. 타이머들을 삭제합니다.
t1 = timer('StartFcn',@(~,~)disp('t1 started.'),... 'TimerFcn',@(~,~)sin(pi/4)); t2 = timer('StartFcn',@(~,~)disp('t2 started.'),... 'TimerFcn',@(~,~)cos(pi/4)); t3 = timer('StartFcn',@(~,~)disp('t3 started.'),... 'TimerFcn',@(~,~)tan(pi/4)); start([t1 t2 t3]); delete([t1 t2 t3]);
t1 started. t2 started. t3 started.
입력 인수
t
— 타이머
타이머 | 타이머로 구성된 배열
시작할 타이머로, 타이머 또는 타이머로 구성된 배열로 지정됩니다.
버전 내역
R2006a 이전에 개발됨
MATLAB 명령
다음 MATLAB 명령에 해당하는 링크를 클릭했습니다.
명령을 실행하려면 MATLAB 명령 창에 입력하십시오. 웹 브라우저는 MATLAB 명령을 지원하지 않습니다.
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)