| Contents | Index |
| On this page… |
|---|
How Debugging Affects Simulation Speed Enabling and Disabling Debugging Debugging the Function in Simulation Watching Function Variables During Simulation |
Debugging a MATLAB Function block slows simulation. For maximum simulation speed, disable debugging as described in Enabling and Disabling Debugging.
There are two levels of debugging available when using MATLAB Function blocks, model level debugging and block level debugging.
Disable debugging for an entire model by clearing the Enable debugging/animation check box in the Simulation Target pane in the Configuration Parameters dialog. Disable debugging for an individual MATLAB Function block by clicking Enable Debugging in the MATLAB Function Block Editor Debug menu. If Enable Debugging is unavailable, then the Simulation Target pane in the Configuration Parameters dialog is controlling debugging.
In Creating an Example Model That Uses a MATLAB Function Block, you created an example model with a MATLAB Function block that calculates the mean and standard deviation for a set of input values.
To debug the MATLAB Function in this model:
Open thecall_stats_block2 model and double-click its MATLAB Function block stats to open it for editing.
In the MATLAB Function Block Editor, click the dash (-) character in the left margin of the line:
len = length(vals);
A small red ball appears in the margin of this line, indicating that you have set a breakpoint.

If you get any errors or warnings, make corrections before you try to simulate again. Otherwise, simulation pauses when execution reaches the breakpoint you set. This is indicated by a small green arrow in the left margin.

Select Debug > Step to advance execution.
The execution arrow advances to the next line of stats, which calls the subfunction avg.
Execution advances to enter the subfunction avg. Once you are in a subfunction, you can use the Step or Step In commands to advance execution. If the subfunction calls another subfunction, use the Step In icon to enter it. If you want to execute the remaining lines of the subfunction, use Step Out.
Select Debug > Step to execute the only line in the subfunction avg. When the subfunction avg finishes executing, a green arrow pointing down under its last line appears.
Select Debug > Step again to return to the function stats.
Execution advances to the line after the call to the subfunction avg.
Step again twice to calculate the stdev and to execute the plot function.
The plot function executes in MATLAB:

In the MATLAB Function Block Editor, a green arrow points down under the last line of code, indicating the completion of the function stats.
Select Debug > Continue to continue execution of the model.
The computed values of mean and stdev now appear in the Display blocks.
In the MATLAB Function Block Editor, select Debug > Exit Debug Mode to stop simulation.
While you simulate a MATLAB Function block, you can use several tools to keep track of variable values in the function.
To display the value of a variable in the function of a MATLAB Function block during simulation:
In the MATLAB Function Block Editor, place the mouse cursor over the variable text and observe the pop-up display.
For example, to watch the variable len during simulation, place the mouse cursor over the text len in the code. The value of len appears adjacent to the cursor, as shown:

You can report the values for a function variable with the Command Line Debugger utility in the MATLAB window during simulation. When you reach a breakpoint, the Command Line Debugger prompt, debug>>, appears. At this prompt, you can see the value of a variable defined for the MATLAB Function block by entering its name:
debug>> stdev 1.1180 debug>>
The Command Line Debugger also provides the following commands during simulation:
| Command | Description |
|---|---|
ctrl-c | Quit debugging and terminate simulation. |
dbcont | Continue execution to next breakpoint. |
dbquit | Quit debugging and terminate simulation. |
dbstep [in|out] | Advance to next program step after a breakpoint is encountered. Step over or step into/out of a MATLAB subfunction. |
help | Display help for command line debugging. |
print <var> | Display the value of the variable var in the current scope. If var is a vector or matrix, you can also index into var. For example, var(1,2). |
save | Saves all variables in the current scope to the specified file. Follows the syntax of the MATLAB save command. To retrieve variables to the MATLAB base workspace, use load command after simulation has been ended. |
<var> | Equivalent to "print <var>" if variable is in the current scope. |
who | Display the variables in the current scope. |
whos | Display the size and class (type) of all variables in the current scope. |
You can issue any other MATLAB command at the debug>> prompt, but the results are executed in the workspace of the MATLAB Function block. To issue a command in the MATLAB base workspace at the debug>> prompt, use the evalin command with the first argument 'base' followed by the second argument command string, for example, evalin('base','whos'). To return to the MATLAB base workspace, use the dbquit command.
You can display the execution result of a MATLAB Function block line by omitting the terminating semicolon. If you do, execution results for the line are echoed to the MATLAB window during simulation.
The MATLAB Function Block Editor does not display the contents of matrices that have more than two dimensions or more than 200 elements. For matrices that exceed these limits, the MATLAB Function Block Editor displays the shape and base type only.
When you enable debugging, MATLAB Function blocks automatically check input and output data for data range violations when the values enter or leave the blocks.
To specify a range for input and output data, follow these steps:
In the Model Explorer, select the input or output of interest in the MATLAB Function block.
The data properties dialog box opens.
In the data properties dialog box, select the General tab and enter a limit range, as described in Setting General Properties.
Use the following tools during a MATLAB Function block debugging session:
| Tool Button | Description | Shortcut Key |
|---|---|---|
Build | Check for errors and build a simulation application (if no errors are found) for the model containing this MATLAB Function block. Alternatively, from the Tools menu, select Build. | Ctrl+B |
Start Simulation | Start simulation of the model containing the MATLAB Function block. If execution is paused at a breakpoint, continues debugging. | F5 |
Stop Simulation | Stop simulation of the model containing the MATLAB Function block. Alternatively, from the Debug menu, select Exit debug mode if execution is paused at a breakpoint. | Shift+F5 |
Set/Clear Breakpoint | Set a new breakpoint or clear an existing breakpoint
for the selected line of code in the MATLAB Function block. The presence
of the text cursor or highlighted text selects the line. A Breakpoint Indicator
| F12 |
Clear All Breakpoints | Clear all existing breakpoints in the MATLAB Function block code. | None |
Step | Step through the execution of the next line of code in the MATLAB Function block. This tool steps past function calls and does not enter called functions for line-by-line execution. You can use this tool only after execution has stopped at a breakpoint. Alternatively, from the Debug menu, select Step. | F10 |
Step In | Step through the execution of the next line of code in the MATLAB Function block. If the line calls a subfunction, step into the first line of the subfunction. You can use this tool only after execution has stopped at a breakpoint. Alternatively, from the Debug menu, select Step In. | F11 |
Step Out | Step out of line-by-line execution of the current function or subfunction. If in a subfunction, the debugger continues to the line following the call to this subfunction. You can use this tool only after execution has stopped at a breakpoint. Alternatively, from the Debug menu, select Step Out. | Shift+F11 |
Continue Debugging | Continue debugging after a pause, such as stopping at a breakpoint. You can use this tool only after execution has stopped at a breakpoint. Alternatively, from the Debug menu, select Continue. | F5 |
Exit Debug Mode | Exit debug mode. You can use this tool only after execution has stopped at a breakpoint. Alternatively, from the Debug menu, select Exit Debug Mode. | Shift+F5 |
![]() | Creating an Example Model That Uses a MATLAB Function Block | MATLAB Function Block Editor | ![]() |

Learn more about Simulink through this collection of videos, articles, technical literature and the Getting Started with Simulink Guide.
| © 1984-2012- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |