Package org.palladiosimulator.monitorrepository.statisticalcharacterization
package org.palladiosimulator.monitorrepository.statisticalcharacterization
-
ClassDescription
StatisticalCharacterizationAggregator
corresponding to theArithmeticMean
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 simplyAM=(x1 + x2 + ...
StatisticalCharacterizationAggregator
corresponding to theGeometricMean
model 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 * ...
StatisticalCharacterizationAggregator
corresponding to theHarmonicMean
model 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.StatisticalCharacterizationAggregator
corresponding to theMedian
model class which computes the median of a sequence of measurements (discrete case) or a function with respect to an interval (continuous case).Abstract base class for all implementations of aggregators forStatisticalCharacterization
s.