How can we read programatically the Alias Data Type of a signal line that get displayed in Information OverLays
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Annu
el 30 de Ag. de 2024
Respondida: praguna manvi
el 30 de Ag. de 2024
How can we read programatically the Alias Data Type of a signal line that get displayed in Information OverLays
0 comentarios
Respuesta aceptada
praguna manvi
el 30 de Ag. de 2024
Hi @Annu
To access “aliasDataType” on the signal-line, you could use “get_param” function on the specific block connected in the signal, following example illustrates using “vdp” model:
```
vdp([], [], [], 'compile');
d = get_param('vdp/Product','CompiledPortDataTypes');
vdp([], [], [], 'term');
disp(d. Inport{1});
```
For information on programmatic access of other properties refer: https://www.mathworks.com/help/simulink/slref/common-block-parameters.html
0 comentarios
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!