| Contents | Index |
| On this page… |
|---|
When Do You Need to Use Global Data? Using Global Data with the MATLAB Function Block Choosing How to Store Global Data How to Use Data Store Memory Blocks How to Use Simulink.Signal Objects |
You might need to use global data with a MATLAB Function block if:
You have multiple MATLAB functions that use global variables and you want to call these functions from MATLAB Function blocks.
You have an existing model that uses a large amount of global data and you are adding a MATLAB Function block to this model, and you want to avoid cluttering your model with additional inputs and outputs.
You want to scope the visibility of data to parts of the model.
In Simulink, you store global data using data store memory. You implement data store memory using either Data Store Memory blocks or Simulink.Signal objects. (For more information, see About Data Stores in the Simulink documentation.) How you store global data depends on how many global variables you are using and the scope of these variables. For more information, see Choosing How to Store Global Data.
In MATLAB functions in Simulink, global declarations are not mapped to the MATLAB global workspace. Instead, you register global data with the MATLAB Function block to map the data to data store memory. This difference allows global data in MATLAB functions to inter-operate with the Simulink solver and to provide diagnostics if they are misused.
A global variable resolves hierarchically to the closest data store memory with the same name in the model. The same global variable occurring in two different MATLAB Function blocks might resolve to different data store memory depending on the hierarchy of your model. You can use this ability to scope the visibility of data to a subsystem.
To use global data in your MATLAB Function block, or in any code that this block calls, you must:
Declare a global variable in your MATLAB Function block, or in any code that is called by the MATLAB Function block.
Register a Data Store Memory block or Simulink.Signal object that has the same name as the global variable with the MATLAB Function block.
For more information, see How to Use Data Store Memory Blocks and How to Use Simulink.Signal Objects.
The following table summarizes whether to use Data Store Memory blocks or Simulink.Signal objects.
| If you want to: | Use: | For more information: |
|---|---|---|
| Use a small number of global variables in a single model that does not use model reference. | Data Store Memory blocks. | How to Use Data Store Memory Blocks |
| Use a large number of global variables in a single model that does not use model reference. | Simulink.Signal objects defined in the model
workspace. Simulink.Signal objects offer these
advantages:
| How to Use Simulink.Signal Objects |
| Share data between multiple models (including referenced models). | Simulink.Signal objects defined in the base workspace | How to Use Simulink.Signal Objects |
Add a MATLAB Function block to your model.
Double-click the MATLAB Function block to open its editor.
Declare a global variable in the MATLAB Function block code, or in any MATLAB file that the MATLAB Function block code calls. For example:
global A;
Add a Data Store Memory block to your model and set the following:
Set the Data store name to match the name of the global variable in your MATLAB Function block code.
Set Data type to an explicit data type.
The data type cannot be auto.
Set Signal type to real.
The signal type cannot be complex or auto.
Specify an Initial value.
The initial value of the Data Store Memory block cannot be unspecified.
Register the variable to the MATLAB Function block.
In the Ports and Data Manager, add data with the same name as the global variable.
Set the Scope of the data to Data Store Memory.
For more information on using the Ports and Data Manager, see Ports and Data Manager.

This simple model demonstrates how a MATLAB Function block uses the global data stored in Data Store Memory block A.
Open the dsm_demo.mdl model.
Double-click the MATLAB Function block to open the MATLAB Function Block Editor.
The MATLAB Function block modifies the value of global data A each time it executes.
function y = fcn %#codegen global A; A = A+1; y = A;
From the menu in the MATLAB Function Block Editor, select Tools > Edit Data/Ports.
The Ports and Data Manager opens.
Select the data A in the left pane.
The Ports and Data Manager displays the data attributes in the right pane. Note that A has a scope of Data Store Memory.
In the model, double-click the Data Store Memory block A.
The Block Parameters dialog box opens. Note that A has an initial value of 25.
Simulate the model.
The MATLAB Function block reads the initial value of global data stored in A and updates the value of A each time it executes.
Create a Simulink.Signal object in the model workspace.
Tip Create a Simulink.Signal object in the base workspace to use the global data with multiple models. |
In the Model Explorer, navigate to model_name > Model Workspace in the Model Hierarchy pane.
Select Add > Simulink Signal.
Ensure that these settings apply to the Simulink.Signal object:
Set Data type to an explicit data type.
The data type cannot be auto.
Set Dimensions to be fully specified.
The signal dimensions cannot be -1 or inherited.
Set Complexity to real.
Set Sample mode to Sample based.
Specify an Initial value.
The initial value of the signal cannot be unspecified.
Register the Simulink.Signal object to the MATLAB Function block.
In the Ports and Data Manager, add data with the same name as the Simulink.Signal object you created in the model (or base) workspace.
Set the Scope of the data to Data Store Memory.
Declare a global variable with the same name in the code for your MATLAB Function block.
global Sig;
For more information on using the Ports and Data Manager, see Ports and Data Manager.

Open the simulink_signal_local model.
Double-click the MATLAB Function block to open its editor.
The MATLAB Function block modifies the value of global data A each time it executes.
function y = fcn %#codegen global A; A = A+1; y = A;
From the MATLAB Function Block Editor menu, select Tools > Edit Data/Ports.
The Ports and Data Manager opens.
Select the data A in the left pane.
The Ports and Data Manager displays the data attributes in the right pane. Note that A has a scope of Data Store Memory.
From the model menu, select View > Model Explorer.
The Model Explorer opens.
In the left pane, select the model workspace for the simulink_signal_local model.
The Contents pane displays the data in the model workspace.
Click the Simulink.Signal object A.
The right pane displays the attributes for A.
| Attribute | Value |
|---|---|
| Data type | double |
| Complexity | real |
| Dimensions | 1 |
| Sample mode | Sample based |
| Initial value | 5 |
Simulate the model.
The MATLAB Function block reads the initial value of global data stored in A and updates the value of A each time it executes.
You can configure your model to provide run-time and compile-time diagnostics for avoiding problems with data stores. Diagnostics are available in the Configuration Parameters dialog box and the parameters dialog box for the Data Store Memory block. These diagnostics are available for Data Store Memory blocks only, not for Simulink.Signal objects. For more information on using data store diagnostics, see Using Data Store Diagnostics in the Simulink documentation.
Note If you pass data store memory arrays to functions, optimizations such as A=foo(A) might result in the code generation software marking the entire contents of the array as read or written even though only some elements were accessed. |
There is no Data Store Memory support for:
MATLAB structures
Variable-sized data
![]() | Using Enumerated Data in MATLAB Function Blocks | Working with Frame-Based Signals | ![]() |

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 |