Click or drag to resize

NonlinearFitAsInterpolationInterpolate Method

Fits the interpolation model to the provided data vectors.

Namespace: Altaxo.Calc.Interpolation
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public IInterpolationFunction Interpolate(
	IReadOnlyList<double> xvec,
	IReadOnlyList<double> yvec,
	IReadOnlyList<double>? yStdDev = null
)

Parameters

xvec  IReadOnlyListDouble
The x-coordinate data points.
yvec  IReadOnlyListDouble
The y-coordinate data points.
yStdDev  IReadOnlyListDouble  (Optional)
The standard deviations of the y-coordinates (optional).

Return Value

IInterpolationFunction
An interpolation function that represents the fitted model.

Implements

IInterpolationFunctionOptionsInterpolate(IReadOnlyListDouble, IReadOnlyListDouble, IReadOnlyListDouble)
See Also