How to read Description of all mpt.signal of the Model Explorer

2 ビュー (過去 30 日間)
Mohan Mishra
Mohan Mishra 2019 年 1 月 10 日
回答済み: Muthukumar Ganesan 2022 年 8 月 1 日
I am trying to write a script to read the description of all signals.
Please suggest the functions available or provide any link through which i can start writing the script.
MPT Signal.PNG

回答 (1 件)

Muthukumar Ganesan
Muthukumar Ganesan 2022 年 8 月 1 日
Hi,
You can start with the following commands.
sflow=sfroot;
model = sflow.find('-isa', 'Stateflow.Chart');
DataArray = model.find('-isa','Stateflow.Data');
where DataArray lists all the data elements corresponding to the model. Description of the data can be accessed using
DataArray(1).Description; %Index into each element to get the description
Hope this helps. Thanks.

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by