Modify the storage class in the data dictionary programmatically

33 vues (au cours des 30 derniers jours)
Juan de la Torre
Juan de la Torre le 3 Août 2021
Commenté : stozaki le 23 Avr 2022
I have my data dictionary build and running for my model. But all of my signals are set automatically to sotrage class to ExportedGlobal. Does anyone know how to change the StorageClass to Auto programmatically?
Thanks in advance
  4 commentaires
Pratik Mahamuni
Pratik Mahamuni le 22 Avr 2022
How do we do it in Model Explorer?

Connectez-vous pour commenter.

Réponse acceptée

stozaki
stozaki le 4 Août 2021
Editing a storage class is editing the properties of a Simulink Signa Object.
To do this, edit the Simulink Signal Object programmatically, not in the Model Explorer.
The method is described in the documentation.
% ex
% Define signa object
mySignal1 = Simulink.Signal;
% edit storage class
mySignal1.CoderInfo.StorageClass = 'ExportedGlobal';
Regards,
stozaki
  2 commentaires
Juan de la Torre
Juan de la Torre le 10 Août 2021
This is it.
Thanks a lot!
Fangjun Jiang
Fangjun Jiang le 22 Avr 2022
I don't think the answer or the linked document provided the needed API to "Modify the storage class in the data dictionary programmatically". I actually requested it through tech support and was told that the full API were still being developed.

Connectez-vous pour commenter.

Plus de réponses (1)

Fangjun Jiang
Fangjun Jiang le 4 Août 2021

Catégories

En savoir plus sur Manage Design Data dans Help Center et File Exchange

Produits


Version

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by