Modify the storage class in the data dictionary programmatically

22 ビュー (過去 30 日間)
Juan de la Torre
Juan de la Torre 2021 年 8 月 3 日
コメント済み: stozaki 2022 年 4 月 23 日
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 件のコメント
Pratik Mahamuni
Pratik Mahamuni 2022 年 4 月 22 日
How do we do it in Model Explorer?
stozaki
stozaki 2022 年 4 月 23 日

サインインしてコメントする。

採用された回答

stozaki
stozaki 2021 年 8 月 4 日
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 件のコメント
Juan de la Torre
Juan de la Torre 2021 年 8 月 10 日
This is it.
Thanks a lot!
Fangjun Jiang
Fangjun Jiang 2022 年 4 月 22 日
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.

サインインしてコメントする。

その他の回答 (1 件)

Fangjun Jiang
Fangjun Jiang 2021 年 8 月 4 日

カテゴリ

Help Center および File ExchangeSimulink Coder についてさらに検索

製品


リリース

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by