Click or drag to resize

SavitzkyGolayFilter(Int32, Int32, Int32) Constructor

Constructs a
C#
SavitzkyGolayFilter
for data smoothing using Savitzky-Golay coefficients fitted to a polynomial of order
C#
polynomialOrder
.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public SavitzkyGolayFilter(
	int numberLeft,
	int numberRight,
	int polynomialDegree
)

Parameters

numberLeft  Int32
Number of data points to fit, left of center.
numberRight  Int32
Number of data points to fit, right of center.
polynomialDegree  Int32
Degree of polynomial used to fit data.
See Also