Click or drag to resize

PolyharmonicSpline1DOptionsInterpolate Method

Sets the interpolation data by providing values for x and y. Both vectors must be of equal length.

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>? yVariance = null
)

Parameters

xvec  IReadOnlyListDouble
Vector of x (independent) data.
yvec  IReadOnlyListDouble
Vector of y (dependent) data.
yVariance  IReadOnlyListDouble  (Optional)

[Missing <param name="yVariance"/> documentation for "M:Altaxo.Calc.Interpolation.PolyharmonicSpline1DOptions.Interpolate(System.Collections.Generic.IReadOnlyList{System.Double},System.Collections.Generic.IReadOnlyList{System.Double},System.Collections.Generic.IReadOnlyList{System.Double})"]

Return Value

IInterpolationFunction
A IInterpolationFunction object.

Implements

IInterpolationFunctionOptionsInterpolate(IReadOnlyListDouble, IReadOnlyListDouble, IReadOnlyListDouble)
See Also