我已经构建了一个Simulink模型,我希望通过MATLAB脚本“注释”一些块。我正在使用MATLAB 2013b。
我知道命令set_param('BlockAddress','Commented','on')
注释掉了模拟中的块,但这不是一回事。
而不是set_param
代码中的'Commented'字符串,我希望找到一个定义'Comment Through'状态的块属性,但我在MATLAB的Common Block Properties页面中找不到它
有没有人知道是否定义了这样的属性,或者,如果不是,通过使用脚本对块进行注释的其他解决方法是什么?
答案 0 :(得分:3)
尽管MATLAB没有在'Commented'属性的可能值中提及'through',但这是使用set_param
注释掉块的代码:
set_param('BlockAddress','Commented','through')