Click or drag to resize

BivariateLinearSplineInterpolate Method

Interpolates the values with given x and y coordinates. Returns double.NaN if x or y are outside the bounds.

Namespace: Altaxo.Calc.Interpolation
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public double Interpolate(
	double x,
	double y
)

Parameters

x  Double
The x coordinate.
y  Double
The y coordinate.

Return Value

Double
The interpolated value. Returns double.NaN if x or y is outside of the bound.
See Also