AudioMetricsHistogramBin

public struct AudioMetricsHistogramBin : Codable, Equatable

A bin with defined boundaries that indicates the number of values in a range of signal characteristics for a histogram. The first and last bins of a histogram are the boundary bins. They cover the intervals between negative infinity and the first boundary, and between the last boundary and positive infinity, respectively.

  • The lower boundary of the bin in the histogram.

    Declaration

    Swift

    public var begin: Double
  • end

    The upper boundary of the bin in the histogram.

    Declaration

    Swift

    public var end: Double
  • The number of values in the bin of the histogram.

    Declaration

    Swift

    public var count: Int