public interface Statistics
This type can be used regardless of the method used to calculate the average (instances: Σxi/N, time: ΣxiΔti/Δt, time with linear interpolation, exponential backoff, ...).
No integer statistics, since averages are not integer in general.
Modifier and Type | Method and Description |
---|---|
Double |
getAverage()
The average.
|
Double |
getMax()
The maximum value.
|
Double |
getMin()
The minimum value.
|
Integer |
getNSamples()
The number of samples.
|
Double |
getStdDev()
The standard deviation.
|
Double getAverage()
Double getStdDev()
Double getMin()
Double getMax()
Integer getNSamples()
Copyright © 2010–2015. All rights reserved.