Click or drag to resize

SavitzkyGolaySavitzkyGolayNthDerivativeCoefficients Method

Constructs the coefficient for the Savitzky-Golay Nth derivative filter when used with the MovingWindowFilter class. The order must be less than or equal to the polynomial degree.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public DoubleVector SavitzkyGolayNthDerivativeCoefficients(
	int order
)

Parameters

order  Int32
The order of the derivative desired.

Return Value

DoubleVector
Savitzky-Golay coefficients.
Exceptions
ExceptionCondition
InvalidArgumentException The derivative order must be less than or equal to the degree of the polynomial.
See Also