Click or drag to resize

BivariateAkimaSplineInterpolate(IReadOnlyListDouble, IReadOnlyListDouble, IROMatrixDouble, IReadOnlyListDouble, IReadOnlyListDouble, IVectorDouble) Method

Interpolates a list of points (u, v) and stores results into w.

Namespace: Altaxo.Calc.Interpolation
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public static void Interpolate(
	IReadOnlyList<double> x,
	IReadOnlyList<double> y,
	IROMatrix<double> z,
	IReadOnlyList<double> u,
	IReadOnlyList<double> v,
	IVector<double> w
)

Parameters

x  IReadOnlyListDouble
The x-grid values.
y  IReadOnlyListDouble
The y-grid values.
z  IROMatrixDouble
The z-values on the grid.
u  IReadOnlyListDouble
The x-coordinates of the interpolation points.
v  IReadOnlyListDouble
The y-coordinates of the interpolation points.
w  IVectorDouble
The vector receiving the interpolated values.
See Also