Create and start a timer that displays the message "timer started." as the
StartFcn callback and generates a random number as the
TimerFcn callback. Delete the timer.
t = timer('StartFcn',@(~,~)disp('timer started.'),...'TimerFcn',@(~,~)disp(rand(1)));
start(t)
delete(t)
timer started.
0.9706
Your output from rand will vary.
Start Several Timers
Use start to begin multiple timers.
Create and start three timers that display message for the
StartFcn callbacks. Compute the sine, cosine, and tangent of
pi/4 as the TimerFcn callbacks. Delete the
timers.
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.