SmoothingCubicSplineBaseInterpolate(IReadOnlyListDouble, IReadOnlyListDouble, Double) Method |
Evaluates either a cross validated cubic spline (standardDeviation set to a negative value),
or a smoothing cubic spline (standardDeviation set to a non-negative value).
Namespace: Altaxo.Calc.InterpolationAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public void Interpolate(
IReadOnlyList<double> x,
IReadOnlyList<double> y,
double standardDeviation
)
Parameters
- x IReadOnlyListDouble
- The abscissae values.
- y IReadOnlyListDouble
- The ordinate values.
- standardDeviation Double
-
If set to a negative value, a cross validated cubic spline is evaluated.
If set to a positive value, the value designates the standard deviation) of the ordinate values.
See Also