Hide simulink editor while running a model

2 visualizzazioni (ultimi 30 giorni)
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)?

Risposta accettata

Atul Suri
Atul Suri il 4 Giu 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')

Più risposte (0)

Categorie

Scopri di più su Programmatic Model Editing in Help Center e File Exchange

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by