How to prevent graphs from popping up in simulink
8 次查看(过去 30 天)
显示 更早的评论
I have several scopes in my simulink diagram that plots graphs and it is getting quite troublesome to turn off all individually if I just want to make minute changes in inputs to see how certain values change in my main program. How do I hide/disable it temporarily without removing the scope block entirely?
0 个评论
回答(1 个)
ES
2018-2-27
HidHandles = get(0,'ShowHiddenHandles');
set(0,'ShowHiddenHandles','On');
AllScopeHandles = findobj(0,'Type','Figure','Tag','SIMULINK_SIMSCOPE_FIGURE');
close(AllScopeHandles );
set(0,'ShowHiddenHandles',HidHandles);
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Event Functions 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!