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