Changing model programmatically: discard changes and exit?

6 views (last 30 days)
Hi,
I programmatically change a model in Simulink, run the simulation, and exit.
open_system(...)
add_block(...)
sim(...)
When I run it again, I get an error from add_block() that the block already exists.
So I add
save_system('different_name')
and than I can run the model again with no problem.
However, I would like to exit without saving the modified model.
Is it possible to somehow discard the changes and exit?

Accepted Answer

Fangjun Jiang
Fangjun Jiang on 18 May 2020
close_system(sys,saveflag)

More Answers (0)

Categories

Find more on Programmatic Model Editing in Help Center and File Exchange

Tags

Products


Release

R2020a

Community Treasure Hunt

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

Start Hunting!