How to read Description of all mpt.signal of the Model Explorer
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
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.
Respuestas (1)
Muthukumar Ganesan
el 1 de Ag. de 2022
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.
0 comentarios
Ver también
Categorías
Más información sobre Stateflow 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!