Histogram.percentile

Returns a value such that roughly percent values in the histogram are smaller than value. The value is linearly interpolated between bin coordinates. The second form stores the bin index such that no more the percent of the values in the histrogram are in the bins up to index (inclusive).

  1. double percentile(double percent, Flag!"excludeOutliers" excludeOutliers)
    struct Histogram(T, Flag!"logIndex" logIndex = No.logIndex)
    const pure
    double
    percentile
    (
    double percent
    ,
    Flag!"excludeOutliers" excludeOutliers = No.excludeOutliers
    )
  2. double percentile(double percent, size_t index, Flag!"excludeOutliers" excludeOutliers)

Meta