Why aren't global variables being recognized in Simulink model explorer?

3 visualizzazioni (ultimi 30 giorni)
When running the dsm_demo.mdl referenced by this Mathworks documentation, global variable A is visible within the Model Explorer as a Data Store Memory object:
When I replicate the MATLAB function used in this model using a global variable B, it is not recognized in the Model Explorer:
Similarly, the Ports and Data Manager for "MATLAB Function" (the provided function) shows A as a data object, while the Ports and Data Manager for "MATLAB Function1" (replicated function) does not show B as a data object.
The MATLAB function used in the model, compared to the one I created are the exact same:
Provided MATLAB function (denoted by "MATLAB Function"):
function y = fcn
%#codegen
global A;
A = A+1;
y = A;
Replicated MATLAB function (denoted by "MATLAB Function1"):
function y = fcn
%#codegen
global B;
B = B+1;
y = B;
I've specifed the Data Type and the Signal Type as the same as with the model's global variable A (data type is double, signal type is real).
When running this model the error messages received are as shown:
Has anyone else seen this issue? Any help would be appreciated!

Risposta accettata

Fangjun Jiang
Fangjun Jiang il 14 Ott 2022
Double click "MATLAB Function1" to open the Editor, click "Edit Data" button, add data "B" as a "Data Store Memory".
  3 Commenti
Fangjun Jiang
Fangjun Jiang il 14 Ott 2022
Modificato: Fangjun Jiang il 14 Ott 2022
Not sure. It seems that if you change the function arguments fcn(x,y,z), x,y and z are automatically reflected in the Ports and Data Manager. But since global variable does not appear in the function arguments, you have to manage it directly in the Ports and Data Manager.
Agni Sarode
Agni Sarode il 14 Ott 2022
Understood. Seems like the demo model may have already initialized the global variable A in the Ports and Data Manager. But this page fails to mention to do the same when the user is creating their own.

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Simulink Functions in Help Center e File Exchange

Prodotti


Release

R2019b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by