Modify the storage class in the data dictionary programmatically

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 个评论

Are you editing the data dictionary in Model Explorer?
stozaki
Hi Stozaki,
Thanks for your answer.
I need to edit the data dictionary programmatically, from the my own script. I have 1000 variables that I need to acces them by code to modify the storage class.

请先登录,再进行评论。

 采纳的回答

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 个评论

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.

请先登录,再进行评论。

类别

帮助中心File Exchange 中查找有关 Manage Design Data 的更多信息

产品

版本

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by