Borrar filtros
Borrar filtros

how to automatically configure the sim parameter

1 visualización (últimos 30 días)
wenchao zhang
wenchao zhang el 7 de Jul. de 2023
Comentada: wenchao zhang el 8 de Jul. de 2023
when i run the following command in command window, matlab version 2019a
sim('untitled','StartTime','0.0','StopTime','20.0','SolverType','Fixed-step','FixedStep','0.5');
the result shows the model simulation parater not changed, any one knows what's the reason, and how to solve it.

Respuesta aceptada

Nitya Patel
Nitya Patel el 7 de Jul. de 2023
You can use the set_param function to set these parameters before running the sim function. Something like below:
set_param('model_name', 'SolverType','Fixed-step');
sim('model_name');
You can set all the parameters individually and run sim at the end.
Documentation:
  3 comentarios
Nitya Patel
Nitya Patel el 7 de Jul. de 2023
You can use the save_system function to save the model after making changes.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

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

Productos


Versión

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by