Auto Simulate Simulink Model

조회 수: 2 (최근 30일)
Tausif Ali
Tausif Ali 2011년 2월 11일
I want to automate the process of capturing and saving the video from a wireless cam but in simulink model it is required to start simulation I need to know if I can automate start simulation procedure in an application.

답변 (2개)

Vieniava
Vieniava 2011년 2월 11일
Iam not sure what kind of automation you need. You may use timer() object:
tim1=timer('TimerFcn', ' sim(''YourSimulation.mdl'') ', ...
'Period', 9.5, 'ExecutionMode', 'fixedRate');
start(tim1);
This would fire up your simulation every 9.5 sec.
To stop
stop(tim1);

James Allison
James Allison 2011년 2월 16일
Automating the simulation of a Simulink model from MATLAB can be done using the sim command.

Community Treasure Hunt

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

Start Hunting!

Translated by