Click or drag to resize

SavitzkyGolayBuildBoundaryDerivatives Method

Builds the boundary points derivatives by sliding the center point of the filter towards each end of the data vectors. The filter length and polynomial degree are maintained.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public void BuildBoundaryDerivatives(
	DoubleVector data,
	ref DoubleVector filteredData,
	int order
)

Parameters

data  DoubleVector
Data to be differentiated.
filteredData  DoubleVector
SG smoothed derivatives of
C#
data
.
order  Int32
Derivative order.
Exceptions
ExceptionCondition
InvalidArgumentExceptionThe length of the input data must be greater than window width =
C#
NumberLeft
+
C#
NumberLeft
+ 1.
See Also