Info
This question is closed. Reopen it to edit or answer.
How can I access the value of signals at the time of stopping the simulation.
1 view (last 30 days)
Show older comments
I want to update the initial values of signals(Simulink.Signal) to the values that these signals hold at the time of stopping the simulation.
All the signals that I use are defined in Matlab workspace.
0 Comments
Answers (2)
Azzi Abdelmalek
on 12 Jan 2013
Don't stop your simulation, just pause it
set_param('yourmodel','SimulationCommand','pause')
To continue simulation
set_param('model','SimulationCommand','continue')
1 Comment
This question is closed.
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!