Click or drag to resize

SavitzkyGolayFilterSavitzyGolayBoundaryOptions Enumeration

Enumeration specifying Savitsky-Golay boundary options.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public enum SavitzyGolayBoundaryOptions
Members
Member nameValueDescription
PadWithZeros0 PadWithZeros adds "number left" zeros to the beginning of the data to be filtered and "number right" zeros to end of the data to be filtered.
DoNotFilterBoundaryPoints1 The first "number left" and the last "number right" data will not be filtered.
ShiftFilterCenter2 Uses the Savitzky-Golay smoothing of the same order of the filter to smooth boundaries. The filter width, and polynomial order is kept fix, while the filter centerpoint is shifted toward the boundaries.
See Also