How to get input and output names of a below subsystem?
13 次查看(过去 30 天)
显示 更早的评论
Is it possible to get names of inputs and outputs without going inside the subsystem using script?
Here inputs are coming from other subsystem/blocks and outputs are going to other subsystem/blocks.
![Subsystem.JPG](https://www.mathworks.com/matlabcentral/answers/uploaded_files/211804/image.jpeg)
expected input names : violet,indigo,blue,green
expected output names : yellow,red,white,black
回答(1 个)
Dhanashree Mohite
2019-4-8
As per my understanding you can use ‘find_system’ command with Blocktype and SearchDepth parameters.
>> find_system('modelName','SearchDepth',2,'BlockType','Inport')
>> find_system('modelName','SearchDepth',2,'BlockType','Outport')
Refer below link for more understanding:
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Subsystems 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!