init
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
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,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user