Customize Model Behavior with Callbacks - MATLAB & Simulink (original) (raw)

Main Content

Callbacks are commands you can define that execute in response to a specific modeling action, such as opening a model or stopping a simulation. Callbacks define MATLAB® expressions that execute when the block diagram or a block is acted upon in a particular way.

Model, block, and port callback parameters identify specific kinds of model actions. You provide the code for a callback parameter. The software executes the callback code when the associated modeling action occurs.

For example, the code that you specify for the PreLoadFcn model callback parameter executes before the model loads. You can provide code for thePreLoadFcn callback that loads the variables that model uses into the MATLAB workspace.

What You Can Do with Callbacks

Callbacks are a powerful way to customize your Simulink® model. A callback executes when you perform actions on your model, such as double-clicking a block or starting a simulation. You can use callbacks to execute MATLAB code. You can use model, block, or port callbacks to perform common tasks, for example Automatically Initialize Variables and Load Data.

Types of Callbacks

The software provides many types of callbacks, including:

Callback Limitations

Do not call the run command from within model or block callback code. Doing so can result in unexpected behavior such as errors or incorrect results if you load, compile, or simulate a Simulink model.

For limitations of specific callbacks, see their documentation.

See Also

Topics