TotalTurnaroundTimeInTicks - Get total number of timer ticks between start and finish of the profiled code

     section over the entire simulation - MATLAB ([original](https://www.mathworks.com/help/ecoder/ref/coder.profile.executiontimesection.totalturnaroundtimeinticks.html)) ([raw](?raw))

Main Content

Get total number of timer ticks between start and finish of the profiled code section over the entire simulation

Syntax

Description

[TotalTurnaroundTicks](#mw%5F4f2fafbf-7e04-4203-a77d-12798c6b504d) = [NthSectionProfile](#mw%5F3f00367d-2afc-4e5d-b347-a742500fb41c).TotalTurnaroundTimeInTicks returns the total number of timer ticks recorded between the start and finish of the profiled code section over the entire simulation. Unless the code is pre-empted, this is the same as the total execution time.

example

Examples

collapse all

To get the total number of timer ticks recorded for turnaround time, use the TotalTurnaroundTimeInTicks property of theNthSectionProfile object.

TotalTurnaroundTicks = NthSectionProfile.TotalTurnaroundTimeInTicks;

Input Arguments

collapse all

The NthSectionProfile is acoder.profile.ExecutionTimeSection object generated by thecoder.profile.ExecutionTime propertySections.

Example: NthSectionProfile

Output Arguments

collapse all

The TotalTurnaroundTicks is the total number of timer ticks between start and finish of the profiled code section over the entire simulation.

Version History

Introduced in R2012b