Click or drag to resize

SavitzkyGolay(Int32, Int32, Int32) Constructor

This sets up a Savitzky-Golay filter.

Namespace: Altaxo.Calc.Regression
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public SavitzkyGolay(
	int numberOfPoints,
	int derivativeOrder,
	int polynomialOrder
)

Parameters

numberOfPoints  Int32
Number of points. Must be an odd number, otherwise it is rounded up.
derivativeOrder  Int32
Order of derivative you want to obtain. Set 0 for smothing.
polynomialOrder  Int32
Order of the fitting polynomial. Usual values are 2 or 4.
See Also