Class ArithmeticMeanAggregator


  • public class ArithmeticMeanAggregator
    extends StatisticalCharacterizationAggregator
    StatisticalCharacterizationAggregator corresponding to the ArithmeticMean model class which computes the arithmetic mean of a sequence of measurements (discrete case) or a function with respect to an interval (continuous case):
    In the discrete case this is simply AM=(x1 + x2 + ... + xn) / n with n being the number of measurements.

    In the continuous case, this aggregator approximates the integral AM=∫f(x)dx ⁄ (b-a) where a and b are upper and lower interval bound and the integration is carried out from a to b, and the (positive) function f is interpolated from a given (finite) set of samples (i.e., measurements).
    See Also:
    https://en.wikipedia.org/wiki/ Mean_of_a_function