How to open a Simulink Scope without the model
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Gunter Nitzsche
am 27 Jul. 2017
Bearbeitet: Gunter Nitzsche
am 14 Aug. 2017
Hi, I am running simulink simulations from a script which take quite a while. So it is good to have a scope open, which shows some output signals to see how far the simulation is and what it is doing.
Under Matlab2014a I was able to open such a scope without actually opening the model:
load_system('model');
set_param('model/Scope','open','on');
The same commands under Matlab2017a do not open the scope. I really have to open the simulink model to see the scope.
Is there a way under Matlab2017a to open the scope without having the window of the model open as well? I am working under Windows7.
Thank you very much in advance.
0 Kommentare
Akzeptierte Antwort
Swarooph
am 27 Jul. 2017
You can use the open_system command. For e.g. in your case:
open_system('model/Scope')
1 Kommentar
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Simulink Functions 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!