Click or drag to resize

SavitzkyGolayApply(IReadOnlyListDouble, IVectorDouble) Method

Applies the configured filter to an array of numbers. The left and right sides are treated specially by applying Savitzky-Golay filters with appropriately adjusted left and right numbers of points.

Namespace: Altaxo.Calc.Regression
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public void Apply(
	IReadOnlyList<double> array,
	IVector<double> result
)

Parameters

array  IReadOnlyListDouble
The array of numbers to filter.
result  IVectorDouble
The resulting array. Must not be identical to array.
Exceptions
ExceptionCondition
ArgumentException Thrown if array and result are identical, or if the input array is shorter than the filter length.
See Also