Is there a command to close all the tabs?
20 ビュー (過去 30 日間)
古いコメントを表示
Is there a command to close all the tabs? I want to only hold the active one,and close all others,is any script can do this?
0 件のコメント
採用された回答
Fangjun Jiang
2021 年 2 月 25 日
Starting from gcs, you can do this. The tab for the root level model would be kept open. The tabs for other models are also not closed.
a=find_system(bdroot(gcs),'FindAll',1,'BlockType','SubSystem');
b=setdiff(a,get_param(gcs,'handle'));
bdclose(b);
0 件のコメント
その他の回答 (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!