如何找出Simulink模型中所有不同的blocktyp pesent?

时间:2016-03-08 14:43:01

标签: matlab simulink

有没有办法找出模型中涉及的所有块类型,我猜它应该能够与get_parameter一起使用? 谢谢

1 个答案:

答案 0 :(得分:3)

find_system开始获取所有块。 获取每个BlockType并最终应用unique以在结果中仅获取每种类型一次。

%get the path to all blocks
all_blocks=find_system('untitled','lookundermasks','all','type','block')
%get the block type
unique(get_param(all_blocks,'BlockType'))

对于lookundermasks选项,请务必选择所需的选项。