TCycleBin

The TCycleBin structure represents a histogram bin.

typedef struct {

double Value;

double Count;

} TCycleBin;

Members

Value

The upper end point of the bin. The lower end point is defined as the upper end point of the previous bin. The lower end point of the first bin is zero.

Count

The number of cycles in this bin. Note that this value need not be an integer because it is calculated by dividing the number of half cycles by two. Thus, if there are an odd number of half cycles in this bin, then this value will not be an integer.

See also

C_CreateCycleHistogramBins, C_DestroyCycleHistogramBins.