Info

This question is closed. Reopen it to edit or answer.

Running simulink files one after another in R2014a - problems

2 views (last 30 days)
I am trying to run a series of simulink files one after another using a for loop, loading new simulink file within a loop, and closing the file before next loop is started. However, simulink always loads the previously loaded simulink file instead of a new file. This was not the case with R2013b.
Any suggestions will be greatly appreciated.
  2 Comments
Andreas Goser
Andreas Goser on 8 Apr 2014
Just to understand: The "Simulink Files" are different and having different names? Or having same names?
Keshab
Keshab on 9 Apr 2014
Thanks Andreas. The Simulink files have got different names. The names are something like this: Model_1, Model_2, Model_3

Answers (1)

Andreas Goser
Andreas Goser on 10 Apr 2014
I tried the following code (R2014a on win7 64 Bit):
models={'vdp','f14'}
for k=1:2
open_system(models{k})
sim(models{k})
close_system(models{k})
end
It works as expected for me. What happens for you? What is your implementation?

Tags

Community Treasure Hunt

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

Start Hunting!