Is it possible to programmatically count the number of times a block is called during a simulation?

1 view (last 30 days)

Accepted Answer

MathWorks Support Team
MathWorks Support Team on 7 Apr 2020
Yes, it is possible through the Simulink Profiler. As of MATLAB R2020a, it is possible to retrieve the information regarding the number of calls to a block in the following way:
>> profilerData = out.SimulationMetadata.TimingInfo.ProfilerData
>> profilerData.rootExecNode.children(3).children(1).children(2)
For more information on the Simulink Profiler, visit the following page:

More Answers (0)

Tags

No tags entered yet.

Products


Release

R2019b

Community Treasure Hunt

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

Start Hunting!