Click or drag to resize

ModifiedSincSmootherSmooth(Double, Double) Method

Smooths the data with the parameters passed to the constructor, including the near-boundary points. The near-boundary points are handled by weighted linear extrapolation of the data before smoothing.

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.

Return Value

Double
The smoothed data. If result is non-null and has the correct size, it is returned.
See Also