Skip to Main Content Skip to Search
Product Documentation

Watching Data Values During Simulation

Watching Data in the Stateflow Debugger

The Browse Data pull-down menu in the Stateflow debugger lets you display selected data in the bottom output display pane of the Stateflow debugger during simulation, after a breakpoint is reached. The debugger can filter the display between:

The following example displays All Data (All Charts) for a chart named Air Controller. This chart has two data values: airflow and temp.

Each displayed object (chart, state, data, and so on) appears with a unique identifier of the form (#id(xx:yy:zz)), which links the listed object to its appearance in the chart. In the Browse Data section, data appears in alphabetical order, regardless of its scope in a chart.

Watching Stateflow Data in the MATLAB Command Window

When simulation reaches a breakpoint, you can view the values of Stateflow data in the MATLAB Command Window. In the following chart, a default transition calls a MATLAB function:

A breakpoint is set at the last executable line of the function:

function stats(vals)
%#codegen

% calculates a statistical mean and standard deviation
% for the values in vals.

len = length(vals);
mean = avg(vals, len);
stdev = sqrt(sum(((vals-avg(vals,len)).^2))/len);
coder.extrinsic('plot');
plot(vals,'-+');  % Breakpoint set at this line

When simulation reaches the breakpoint, you can display Stateflow data in the MATLAB Command Window.

  1. At the MATLAB prompt, press Enter.

    A debug>> prompt appears.

  2. Type whos to view the data that is visible at the current scope.

  3. Enter the name of data array vals at the prompt to display its value.

  4. Enter vals(2:3) to view specific values of that array.

The Command Line Debugger provides these commands during simulation:

Command

Description

dbstep

Advance to next executable line of code.

dbstep [in/out]

When debugging MATLAB functions in a chart:
  • dbstep [in] advances to the next executable line of code. If that line contains a call to another function, execution continues to the first executable line of the function.

  • dbstep [out] executes the rest of the function and stops just after leaving the function.

dbcont

Continue execution to next breakpoint.

dbquit (ctrl-c)

Stop simulation of the model. Press Enter after this command to return to the command prompt.

help

Display help for command-line debugging.

print var

...or...

var

Display the value of the variable var.

var (i)Display the value of the ith element of the vector or matrix var.
var (i:j)Display the value of a submatrix of the vector or matrix var.

save

Saves all variables to the specified file. Follows the syntax of the MATLAB save command. To retrieve variables in the MATLAB base workspace, use the load command after simulation has ended.

whos

Display the size and class (type) of all variables in the scope of the halted MATLAB function in your chart.

You can issue any other MATLAB command at the debug>> prompt but the results are executed in the Stateflow workspace. For example, you can issue the MATLAB command plot(var) to plot the values of the variable var.

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').

  


Free Stateflow Interactive Kit

Learn how engineers use Stateflow to model state machines in their Simulink models.


Get free kit

Trials Available

Try the latest version of Stateflow.


Get trial software
 © 1984-2012- The MathWorks, Inc.    -   Site Help   -   Patents   -   Trademarks   -   Privacy Policy   -   Preventing Piracy   -   RSS