How to disable spectrum scopes from popping up when a Simulink model is opened?

41 views (last 30 days)
Hello,
I want to disable popping up of Spectrum scopes each time I open a Simulink model. I have quite a lot of observations to be done and have thus included a huge number of Spectrum Analyzers (DSP Tool box). Each time I open the model, all the scopes pop out and it takes a lot of time for the actual model to open and I have to manually close all of them. Is there any initialization that I can include in the model which enables to view the Spectrum analyzer results once after the Simulation is complete?
Thank you in advance!
-Mahitha V.R.
  1 Comment
V R
V R on 30 Jun 2020
open_system('your_system')
myScopeConfiguration = get_param('your_system/your_scope', 'ScopeConfiguration');
myScopeConfiguration.OpenAtSimulationStart = false;

Sign in to comment.

Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!