有没有办法找出模型中涉及的所有块类型,我猜它应该能够与get_parameter一起使用? 谢谢
答案 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
选项,请务必选择所需的选项。