Filter löschen
Filter löschen

How can we read programatically the Alias Data Type of a signal line that get displayed in Information OverLays

10 Ansichten (letzte 30 Tage)
How can we read programatically the Alias Data Type of a signal line that get displayed in Information OverLays

Akzeptierte Antwort

praguna manvi
praguna manvi am 30 Aug. 2024
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

Weitere Antworten (0)

Kategorien

Mehr zu Simulink Functions finden Sie in Help Center und File Exchange

Produkte


Version

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by