Output the amount of time it took to run a simulation

조회 수: 3 (최근 30일)
Robert Demyanovich
Robert Demyanovich 2021년 11월 25일
편집: Paul 2021년 11월 26일
My simulations take a long time. I would like to be able to measure the amount of time it took for a simulation to run. I would like to be able to do this even if I prematurely stop the run.

답변 (2개)

Paul
Paul 2021년 11월 25일
편집: Paul 2021년 11월 26일
Execute
simout = sim()
Then look at
simout.SimulationMetadata.TimingInfo

Walter Roberson
Walter Roberson 2021년 11월 25일
Put the code to be timed into a function. At the beginning of the function, tic() and assign the result to a variable. Then immediately create an onCleanup that does a toc() of the variable and outputs the result.
If you do this then the time will be output when the function exits, including cases where the function was interrupted.

카테고리

Help CenterFile Exchange에서 Simulink에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by