How to get values of Scope and Port of "Data data" dialog box using API's?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Dark_Knight
el 30 de Ag. de 2023
Comentada: Dark_Knight
el 6 de Sept. de 2023
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?
0 comentarios
Respuesta aceptada
Fangjun Jiang
el 5 de Sept. de 2023
open_system('sldemo_autotrans');
sf=sfroot;
ch=sf.find('-isa','Stateflow.Chart');
d=Stateflow.Data(ch);
d.Scope='Output';
d.Port
Más respuestas (0)
Ver también
Categorías
Más información sobre Simulink Functions en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!