How to programmatically find the port types of the blocks
11 次查看(过去 30 天)
显示 更早的评论
According to the documentation , "PortConnectivity" parameter of the block has a field "type" which should either return the type (enable, state ...) or number(if it is a data port).
However testing it on Enabled Delay block from Simulink library, the input ports "type" field is 1 and 2 instead of 1 and "enable". Is this a documentation error, api error or my misunderstanding?
get_param(block_name_fp,"PortConnectivity")
6 个评论
Paul
2021-12-28
Well, it does appear that there are several blocks in the Discrete library that all have BlockType == 'Delay'
As far as I can tell, and I might be wrong, the only way to distinguish how each is configured is to interrogate other parameters of the block, like
get_param(gcb,'ShowEnablePort')
to determine which input ports are "active" (I can't think of a better word) and go from there.
采纳的回答
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Programmatic Model Editing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!