How can I get the input names of the first level only in my simulink model?
12 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Ali
am 8 Dez. 2021
Kommentiert: Ali
am 11 Dez. 2021
With this code I can get all the inputs off my simulink model
rootHdl = get_param(bdroot, 'Handle');
sysIns = find_system(rootHdl, 'BlockType', 'Inport');
inportNames = get_param(sysIns, 'Name');
%I would like to have only the firsrt level?
Thanks in advance
0 Kommentare
Akzeptierte Antwort
Bharath Venkataraman
am 8 Dez. 2021
You can use the SearchDepth parameter to specify the depth of the search.
sysIns = find_system(bdroot,'SearchDepth',1, 'BlockType', 'Inport')
finds the input ports at the first level.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Model Verification finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!