ModifiedSincSmootherSmoothExceptBoundaries Method |
Smooths the data with the parameters passed to the constructor, except for the near-end points.
Namespace: Altaxo.Calc.RegressionAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntaxpublic double[] SmoothExceptBoundaries(
double[] data,
double[]? result
)
Parameters
- data Double
- The input data.
- result Double
-
The output array; may be .
If supplied, has the correct size, and is not the input array, 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.
Values within
m points from the boundaries, where the convolution is undefined, remain 0
(or retain the previous value if the supplied
result array is used).
See Also