Hide simulink editor while running a model

2 visualizaciones (últimos 30 días)
Rostislav Teryaev
Rostislav Teryaev el 24 de Abr. de 2018
Respondida: Atul Suri el 4 de Jun. de 2019
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)?

Respuesta aceptada

Atul Suri
Atul Suri el 4 de Jun. de 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')

Más respuestas (0)

Categorías

Más información sobre Programmatic Model Editing en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by