Click or drag to resize

MovingWindowFilterSetFilterParameters Method

Sets the parameters for this filter.

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

Parameters

numberLeft  Int32
The number left.
numberRight  Int32
The number right.
coefficients  DoubleVector
The filter coefficients.
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