Click or drag to resize

MovingWindowFilterFilter(DoubleVector, MovingWindowFilterBoundaryOption, DoubleVector) Method

Applies the filter to the given data using the given boundary option and places the output in a given vector. The given boundary options sets the current boundary option.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public void Filter(
	DoubleVector x,
	MovingWindowFilterBoundaryOption boundaryOpt,
	ref DoubleVector filteredData
)

Parameters

x  DoubleVector
The data to be filtered.
boundaryOpt  MovingWindowFilterBoundaryOption
The boundary option.
filteredData  DoubleVector
Filtered data is place here. If the length of filteredData is not equal to the length of the input data x, it will be resized.
See Also