I want to stop my simulink code after 10 seconds of running
23 次查看(过去 30 天)
显示 更早的评论
I am using simulink audio tool box to record an audio.
I am starting this simulink code using my matlab code.(sim("*simulink file name*")).
But i want this simulink file to run for 15 seconds so the .wav file output from the simulink code can be read by the matlab code.
0 个评论
回答(2 个)
Jon
2022-6-30
So I'm assuming you mean that you want the Simulink model to run for 15 seconds of real time. Otherwise if you just want it to run for 15 seconds of simulated elapsed time you could just set you stop time to 15 seconds.
To make it run for 15 seconds of real time you can use the Simulation Pacing Option. To get to this setting click on the drop down below the Run button. There you can check the box for "Enable pacing to slow down simulation, and set the slider for Simulation timer per wall clock second to 1. With those settings, if you set the stop time of the simulation to 15 seconds, the real elapsed time will also be 15 seconds.
4 个评论
Jon
2022-6-30
Finally, I should have noticed earlier that you are using a special toolbox "Audio Toolbox"
I am not familiar with this toolbox, but it is quite possible it has some built in settings to allow you to capture data for a specified amount of real time. In this case I would just use the built in functionality
jibrahim
2022-7-1
This should work:
sim(modelname, 15)
2 个评论
Jon
2022-7-1
Yes, you can set the stop time programmatically as you show. I think the OP wants the model to run for 15 seconds of realtime, that is what I explained in my answer above.
jibrahim
2022-7-1
If the audio IO blocks are used (e,g audio Device Reader, Writer...), then the model will run in realtime with no required changes from the user. The IO blocks will take care of blocking execution.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Audio I/O and Waveform Generation 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!