How to close Simulink model subsystems
10 ビュー (過去 30 日間)
古いコメントを表示
For a given model, I am looking for an easy way to close all open subsystems' windows, except the basic one. If I close them all, save the model and reopen it, it works, but I want to do the same with code.
回答 (5 件)
TAB
2012 年 3 月 14 日
No need of using lots of variables & loop. Just find all the subsystems in the model and close them.
close_system(find_system('YouModel','findall','on','BlockType','SubSystem'));
0 件のコメント
Doug Eastman
2012 年 3 月 13 日
Assuming your top-level model is called TopModel you could use:
a = find_system('Parent','TopModel');
close_system(a)
0 件のコメント
Pablo Romero
2015 年 9 月 14 日
There is a small trick. You can load again the top-level of the system and save it (if requested).
open_system(bdroot); % Load the top-level
close_system(bdroot, 1); % Save and close the Model
Of course you can use your Modelname instead of bdroot.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Programmatic Model Editing についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!