Click or drag to resize

SavitzkyGolay(Int32, Int32, Int32) Constructor

Constructs a Savitzky-Golay helper class to generate Savitzky-Golay filtering coefficients.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public SavitzkyGolay(
	int NumberLeft,
	int NumberRight,
	int PolynomialDegree
)

Parameters

NumberLeft  Int32
The number of samples left of center.
NumberRight  Int32
The number of samples right of center.
PolynomialDegree  Int32
The degree of the fitting polynomial.
Exceptions
ExceptionCondition
InvalidArgumentException All constructor parameters must be greater that 0.
InvalidArgumentException "The polynomial degree must be less than the window width. The window width is NumberLeft + NumberRight + 1."
See Also