How to batch editing scope parameters in Simulink with model explorer(Model explorer does not show some properties of Scope)
2 次查看(过去 30 天)
显示 更早的评论
I want to disable the datalogging function of scope in one Simulation file. It is time-consuming to modify them manually. One possible way I found is to utilize the Model Explorer in Simulink. It is fine to use this tool to batch editing some block properties. However, specifically for scope, it cannot show some properties of scope I want to modify,e.g., timespan, DataLogging. Is this the bug for Model Explorer or I do something just wrong? Please find the screenshot of my Model Explorer. Thanks.
0 个评论
采纳的回答
Christopher Wallace
2018-7-23
I'm not sure about Model Explorer, what version of Matlab are you using? I tried on 2017a and it seemed to work fine.
Another option you could try would be to use 'find_system' to get the handles of all of the scopes and then use 'set' to update the properties for all of the scopes.
ex.
rootHndl = get_param(bdroot, 'Handle')
scopeHndls = find_system(rootHndl , 'BlockType', 'Scope')
set(scopeHndls, 'DataLogging', 'on')
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Interactive Model Editing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!