Click or drag to resize

MovingWindowFilter(Int32, Int32, DoubleVector) Constructor

Constructs a MovingWindowFilter instance with the specified parameters.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public MovingWindowFilter(
	int numberLeft,
	int numberRight,
	DoubleVector coefficients
)

Parameters

numberLeft  Int32
Number of points to the left.
numberRight  Int32
Number of points to the right.
coefficients  DoubleVector
The coefficients for the linear combination.
Exceptions
ExceptionCondition
InvalidArgumentExceptionThrown if either number left or number right is negative, or if the number of coefficients is not equal to the size of the window ( = numberLeft + numberRight + 1).
See Also