How to get values of Scope and Port of "Data data" dialog box using API's?

2 次查看(过去 30 天)
The stateflow chart of "sldemo_autotrans" model,provides its output via port number 2 to Simulink.
Is there any provisions in MATLAB to get the values of Scope and Port (shown in the above figure) via API's?

采纳的回答

Fangjun Jiang
Fangjun Jiang 2023-9-5
open_system('sldemo_autotrans');
sf=sfroot;
ch=sf.find('-isa','Stateflow.Chart');
d=Stateflow.Data(ch);
d.Scope='Output';
d.Port

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Simulink Functions 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by