Click or drag to resize

SmoothingCubicSplineOptionsSmoothness Property

Gets the smoothness parameter. Must be in the interval [0, PositiveInfinity], where a value of 0 means no smoothing (evaluation of a cubic spline), while a value of PositiveInfinity means evaluation of a regression.

Namespace: Altaxo.Calc.Interpolation
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public double Smoothness { get; init; }

Property Value

Double
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionThrown if the value is negative.
Remarks
The SmoothingParameter is calculated by SmoothingParameter = Smoothness / (1 + Smoothness).
See Also