How can I get the output and input names of all my subsystem blocks in my simulink model?

130 次查看(过去 30 天)
I used Simscape to build a circuit that I divided into different subsystems. Is it possible to read in the inputs and outputs of these subsystem blocks and the name of the subsystem block with a Matlab function like find_system?

采纳的回答

Christopher Wallace
Yes. What have you tried so far?
Something like this should work.
rootHdl = get_param(bdroot, 'Handle');
sysIns = find_system(rootHdl, 'BlockType', 'Inport');
sysOuts = find_system(rootHdl, 'BlockType', 'Outport');
inportNames = get_param(sysIns, 'Name');
outportNames = get_param(sysOuts , 'Name');

更多回答(1 个)

Julian Dieterle
Julian Dieterle 2018-7-25
Thanks a lot!
I get the name of the corresponding subsystem block from:
SubsystemName=get(SysIns,'parent')

类别

Help CenterFile Exchange 中查找有关 Programmatic Model Editing 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by