Enumeration specifying Savitsky-Golay boundary options.
Namespace:
CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 5.1.0.0
Syntax
| C# |
|---|
public enum SavitzyGolayBoundaryOptions |
| Visual Basic (Declaration) |
|---|
Public Enumeration SavitzyGolayBoundaryOptions |
| Visual C++ |
|---|
public enum class SavitzyGolayBoundaryOptions |
Members
| Member name | Description | |
|---|---|---|
| PadWithZeros |
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.
| |
| DoNotFilterBoundaryPoints |
The first "number left" and the last "number right" data
will not be filtered.
| |
| ShiftFilterCenter |
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.
|