Hide simulink editor while running a model

2 vues (au cours des 30 derniers jours)
Rostislav Teryaev
Rostislav Teryaev le 24 Avr 2018
I do not understand why it is necessary to open simulink editor when running a model on simulation. Even if FastStart is enabled for not to recompile a model in an iterative simulation. So, the question is whether it is possible or not to run simulation without making simulink editor visible (or at least to hide it after opening)?

Réponse acceptée

Atul Suri
Atul Suri le 4 Juin 2019
You can run the model without opening the model using the sim command. See doc for sim command here. You can also load the model using load_system which will load the model in memory but not open the editor. See Run Simulations Programmatically for more details.
The following will load the Modeling a Fault-Tolerant Fuel Control System example model (sldemo_fuelsys) and simulate it:
model = 'sldemo_fuelsys';
load_system(model);
set_param(model, 'SimulationCommand', 'start')
You can simulate it without opening/loading explicitly using the following:
sim('sldemo_fuelsys')

Plus de réponses (0)

Catégories

En savoir plus sur Programmatic Model Editing dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by