Click or drag to resize

BivariateAkimaSplineInterpolate(Double, Double, Double, Double, Double, Double) 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(
	double[] x,
	double[] y,
	double[] z,
	double[] u,
	double[] v,
	double[] w
)

Parameters

x  Double
X coordinates of grid points (ascending).
y  Double
Y coordinates of grid points (ascending).
z  Double
Z values on the (x,y) grid with dimensions (x.Count, y.Count) in a column major array.
u  Double
X-coordinates of desired points.
v  Double
Y-coordinates of desired points.
w  Double
Receives interpolated z values.
See Also