Generate Code for unused Variables in Data Dictionary

72 vues (au cours des 30 derniers jours)
Jake Gareau
Jake Gareau le 26 Nov 2024 à 23:02
Réponse apportée : Abhas le 2 Déc 2024 à 14:50
is it possible to declare some variables as global inside a datadictionary and have these variables show up in a declaration file even if they are unused in the model?

Réponse acceptée

Abhas
Abhas le 2 Déc 2024 à 14:50
In MATLAB, it is not directly possible to declare global variables in a data dictionary and have them appear in a declaration file if they are unused in the model. MATLAB's code generation processes exclude unused variables to optimize the generated code. However, there are workarounds:
  1. Using Data Store Memory blocks: To declare such variables explicitly as global, you can create Data Store Memory blocks for them in your Simulink model. These variables will then appear in the code as global, but this requires integrating the Data Store Memory blocks within your model explicitly.
  2. Simulink.Signal Objects: You can define these variables as "Simulink.Signal" objects in the base workspace or the data dictionary and mark them as "ExportedGlobal". However, if these signals are not referenced in the model, they may still not appear in the generated code. This approach is commonly used in conjunction with MATLAB Function Blocks for sharing variables across different parts of the model.
You may refer the below MathWorks documentation links to know more about the same:
  1. https://www.mathworks.com/help/simulink/ug/simulink-signal-objects-matlab-function-blocks.html
  2. https://www.mathworks.com/help/simulink/ug/data-store-memory-matlab-function-blocks.html

Plus de réponses (1)

Mark McBroom
Mark McBroom le 30 Nov 2024 à 20:13
Déplacé(e) : Walter Roberson le 30 Nov 2024 à 21:50
AFAIK this is not possible. One simple workaround would be to create global data stores in the model for each of these variables.

Catégories

En savoir plus sur Deployment, Integration, and Supported Hardware dans Help Center et File Exchange

Produits


Version

R2024a

Community Treasure Hunt

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

Start Hunting!

Translated by