Click or drag to resize

WhittakerHendersonSmootherSmooth(Double, Double) Method

Smooths the data with the parameters passed to the constructor.

Namespace: Altaxo.Calc.Regression
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public double[] Smooth(
	double[] data,
	double[]? result
)

Parameters

data  Double
The input data.
result  Double
The output array; may be . If supplied and has the correct size, it is used for the output. It may also be the same instance as data; in that case the input is overwritten.

Return Value

Double
The smoothed data. If result is non-null and has the correct size, it is returned.
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionThrown if the length of data does not match the configured length.
See Also