How can I run simulink one sample at a time?
7 次查看(过去 30 天)
显示 更早的评论
Dear matlab user,
I know how to run a simulink model from a script, e.g. 'sim('model_name.slx')'.
I would like to run this model one step at a time so that I can update my controller parameters iteratively. How can I achieve this?
With kind regards,
Luuk Spin
1 个评论
Benjamin Thompson
2022-12-1
This can be done easily from the Simulink user interface using the Debug controls. Many block parameters are tunable while the model is running or halted in the debug mode. The Simulink Dashboard library also has a number of user interface blocks that can be linked to parameters in your model and changed dynamically while the model is running.
回答(2 个)
Sara Nadeau
2022-12-1
编辑:Sara Nadeau
2022-12-2
What the other comment recommends, using sldebug, is the programmatic interface for low-level debugging of simulations. Based on what you describe, this might be more than you need. The sldebug interface can require a fair amount of knowledge about the software.
There are also options for stepping simulations one time step at a time on the Debug tab of the toolstrip. The doc currently refers to this as the "Simulation Stepper". It sounds like this would suit your needs and it's much simpler and more interactive. Here's a link to the doc on these features: https://www.mathworks.com/help/simulink/simulation-stepper.html
If you are looking to do this programmatically, there isn't a feature designed for that. While the sldebug interface is a programmatic debugging interface, it isn't supported for scripting. sldebug is meant for an interactive workflow where you enter commands in the Command Window.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Debug Simulations Programmatically 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!