How to batch editing scope parameters in Simulink with model explorer(Model explorer does not show some properties of Scope)
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Ren Ren
am 23 Jul. 2018
Kommentiert: Ren Ren
am 23 Jul. 2018
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 Kommentare
Akzeptierte Antwort
Christopher Wallace
am 23 Jul. 2018
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')
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Interactive Model Editing finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!