Click or drag to resize

WeightedSavitzkyGolaySmootherWeightType Enumeration

Specifies the weight function to use. The default is NONE, which results in traditional SG smoothing.

Namespace: Altaxo.Calc.Regression
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public enum WeightType
Members
Member nameValueDescription
NONE0 No weighting; results in traditional SG smoothing.
GAUSS21 Modified Gaussian with alpha = 2, as described in the paper by Schmid and Diebold.
HANN2 Hann window function (also known as raised cosine or cosine-square).
HANNSQR3 Hann-squared window function (also known as cos^4).
HANNCUBE4 Hann-cubed window function (also known as cos^6).

The WeightedSavitzkyGolaySmootherWeightType type exposes the following members.

Extension Methods
 NameDescription
Public Extension MethodIsT Determines whether the enumeration value is equal to the specified value.
(Defined by EnumerationExtensions)
Public Extension MethodWithClearedFlagT Returns the enum value with the specified flag cleared.
(Defined by EnumerationExtensions)
Public Extension MethodWithFlagT Returns the enum value with the specified flag set or cleared, depending on the value argument.
(Defined by EnumerationExtensions)
Public Extension MethodWithSetFlagT Returns the enum value with the specified flag set.
(Defined by EnumerationExtensions)
Top
See Also