Click or drag to resize

BivariateAkimaSplineGetValueAndDerivativesOfXY Method

Interpolates a single point and also returns the first partial derivatives.

Namespace: Altaxo.Calc.Interpolation
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public (double z, double dzdx, double dzdy) GetValueAndDerivativesOfXY(
	double x,
	double y
)

Parameters

x  Double
The x-coordinate of the desired point.
y  Double
The y-coordinate of the desired point.

Return Value

ValueTupleDouble, Double, Double
The interpolated z value together with the partial derivatives w.r.t. x and y at (x, y).

Implements

IBivariateInterpolationFunctionWithDerivativesGetValueAndDerivativesOfXY(Double, Double)
See Also