public interface Accumulator<T>
final MinMax<Double> minMax = new MinMax<>();
final Variance<Double> variance = new Variance<>();
final Quantile<Double> quantile = new Quantile<>();
final List<Double> values = ...;
accumulators.accumulate(values, minMax, variance, quantile);
accumulators
Modifier and Type | Method and Description |
---|---|
void |
accumulate(T value)
Accumulate the given value.
|
void accumulate(T value)
value
- the value to accumulate.© 2007-2014 Franz Wilhelmstötter (2014-03-07 19:35)