NChartPeakDetectorAbsoluteThreshold Property |
Flag determining if Threshold is absolute (true) or relative (false). The default value is false.
Absolute threshold means that it is given in the same units as the values in the analyzed points.
Relative threshold represents a fraction of |max - min|, where max is the maximal value in the given points array and
min is the minimal one.
So if, for example, min = 0, max = 10, threshold is set to 0.3 and this flag is true, then the actual threshold the
peaks will be search according to will be 0.3.
But if this flag is false, the actual threshold will be 0.3 * (10 - 0) = 3.
Normally it's reasonable to use relative threshold if you don't know the bounds of your values. However, this will
mean an additional scan through the points to determine min and max values, so the processing will take a bit more
time.
Namespace:
NChart3D_UWP
Assembly:
NChart3D_UWP (in NChart3D_UWP.dll)
Syntax public bool AbsoluteThreshold { get; set; }
Public Property AbsoluteThreshold As Boolean
Get
Set
public:
virtual property bool AbsoluteThreshold {
bool get () sealed;
void set (bool value) sealed;
}
Property Value
Type:
BooleanSee Also