namespace DTS.Common.DAS.Concepts.DAS
{
///
/// Methods for determining the value of the representative point for decimated sets.
///
public enum DecimationMethod
{
///
/// Use that value of the PointsPerPoint-th point as the representative value.
///
Point,
///
/// Use the average of the PointsPerPoint values as the representative value.
///
Average,
///
/// Use the peak magnitude value of the PointsPerPoint values as the representative value.
///
PeakMagnitude,
}
}