Modify the storage class in the data dictionary programmatically

조회 수: 35 (최근 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 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
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 CenterFile 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