Package org.palladiosimulator.monitorrepository.statisticalcharacterization
-
Class Summary Class Description ArithmeticMeanAggregator StatisticalCharacterizationAggregatorcorresponding to theArithmeticMeanmodel 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 simplyAM=(x1 + x2 + ...GeometricMeanAggregator StatisticalCharacterizationAggregatorcorresponding to theGeometricMeanmodel class which computes the geometric mean of a sequence of measurements (discrete case) or a (positive) function with respect to an interval (continuous case):
In the discrete case this is simplyGM=(x1 * x2 * ...HarmonicMeanAggregator StatisticalCharacterizationAggregatorcorresponding to theHarmonicMeanmodel class which computes the harmonic 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 the reciprocal of the arithmetic mean of the reciprocals of the measurements.
Note that it is not defined if any of the measurements is exactly 0.MedianAggregator StatisticalCharacterizationAggregatorcorresponding to theMedianmodel class which computes the median of a sequence of measurements (discrete case) or a function with respect to an interval (continuous case).StatisticalCharacterizationAggregator Abstract base class for all implementations of aggregators forStatisticalCharacterizations.