Modify the storage class in the data dictionary programmatically
22 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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
Réponse acceptée
stozaki
le 4 Août 2021
To do this, edit the Simulink Signal Object programmatically, not in the Model Explorer.
% ex
% Define signa object
mySignal1 = Simulink.Signal;
% edit storage class
mySignal1.CoderInfo.StorageClass = 'ExportedGlobal';
Regards,
stozaki
2 commentaires
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.
Plus de réponses (1)
Voir également
Catégories
En savoir plus sur Simulink Coder dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!