| MATLAB® | ![]() |
| On this page… |
|---|
Note Callback function execution might be delayed if the callback involves a CPU-intensive task such as updating a figure. |
The timer object supports properties that let you specify the MATLAB commands that execute when a timer fires, and for other timer object events, such as starting, stopping, or when an error occurs. These are called callbacks. To associate MATLAB commands with a timer object event, set the value of the associated timer object callback property.
The following diagram shows when the events occur during execution of a timer object and give the names of the timer object properties associated with each event. For example, to associate MATLAB commands with a start event, assign a value to the StartFcn callback property. Error callbacks can occur at any time.
Timer Object Events and Related Callback Function

When the time period specified by a timer object elapses, the timer object executes one or more MATLAB functions of your choosing. You can specify the functions directly as the value of the callback property. You can also put the commands in an M-file function and specify the M-file function as the value of the callback property.
This example creates a timer object that displays a greeting after 5 seconds. The example specifies the value of the TimerFcn callback property directly, putting the commands in a text string.
t = timer('TimerFcn','disp(''Hello World!'')','StartDelay',5);Note When you specify the callback commands directly as the value of the callback function property, the commands are evaluated in the MATLAB workspace. |
Instead of specifying MATLAB commands directly as the value of a callback property, you can put the commands in an M-file and specify the M-file as the value of the callback property.
When you create a callback function, the first two arguments must be a handle to the timer object and an event structure. An event structure contains two fields: Type and Data. The Type field contains a text string that identifies the type of event that caused the callback. The value of this field can be any of the following strings: 'StartFcn', 'StopFcn', 'TimerFcn', or 'ErrorFcn'. The Data field contains the time the event occurred.
In addition to these two required input arguments, your callback function can accept application-specific arguments. To receive these input arguments, you must use a cell array when specifying the name of the function as the value of a callback property. For more information, see Specifying the Value of Callback Function Properties.
This example implements a simple callback function that displays the type of event that triggered the callback and the time the callback occurred. To illustrate passing application-specific arguments, the example callback function accepts as an additional argument a text string and includes this text string in the display output. To see this function used with a callback property, see Specifying the Value of Callback Function Properties.
function my_callback_fcn(obj, event, string_arg) txt1 = ' event occurred at '; txt2 = string_arg; event_type = event.Type; event_time = datestr(event.Data.time); msg = [event_type txt1 event_time]; disp(msg) disp(txt2)
You associate a callback function with a specific event by setting the value of the appropriate callback property. You can specify the callback function as a text string, cell array, or function handle. To access the object and event arguments, you must specify the function as a cell array or as a function handle. If your callback function accepts additional arguments, you must use a cell array.
The following table shows the syntax for several sample callback functions and describes how you call them.
Callback Function Syntax | How to Specify as a Property Value |
|---|---|
function myfile | set(h, 'StartFcn', 'myfile') |
function myfile(obj, event) | set(h, 'StartFcn', @myfile) |
function myfile(obj, event, arg1, arg2) | set(h, 'StartFcn', {'myfile', 5, 6}) |
function myfile(obj, event, arg1, arg2) | set(h, 'StartFcn', {@myfile, 5, 6}) |
This example illustrates several ways you can specify the value of timer object callback function properties, some with arguments and some without. To see the code of the callback function, my_callback_fcn, see Example: Writing a Callback Function.
t = timer('StartDelay', 4,'Period', 4,'TasksToExecute', 2,...
'ExecutionMode','fixedRate');Specify the value of the StartFcn callback. Note that the example specifies the value in a cell array because the callback function needs to access arguments passed to it.
t.StartFcn = {'my_callback_fcn', 'My start message'};Specify the value of the StopFcn callback. The example specifies the callback function by its handle, rather than as a text string. Again, the value is specified in a cell array because the callback function needs to access the arguments passed to it.
t.StopFcn = { @my_callback_fcn, 'My stop message'};Specify the value of the TimerFcn callback. The example specifies the MATLAB commands in a text string.
t.TimerFcn = 'disp(''Hello World!'')';start(t)
The example outputs the following.
StartFcn event occurred at 10-Mar-2004 17:16:59 Start message Hello World! Hello World! StopFcn event occurred at 10-Mar-2004 17:16:59 Stop message
Delete the timer object after you are finished with it.
delete(t)
![]() | Starting and Stopping Timers | Timer Object Execution Modes | ![]() |
| © 1984-2008- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |