Click or drag to resize

IBivariateInterpolationFunctionWithDerivatives Interface

Defines a bivariate interpolation function that provides both the interpolated value and its partial derivatives with respect to the x and y coordinates at a specified point.

Namespace: Altaxo.Calc.Interpolation
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public interface IBivariateInterpolationFunctionWithDerivatives : IBivariateInterpolationFunction

The IBivariateInterpolationFunctionWithDerivatives type exposes the following members.

Methods
 NameDescription
Public methodGetValueAndDerivativesOfXY Calculates the value of the function and its partial derivatives with respect to x and y at the specified coordinates.
Public methodGetValueOfXY Returns the y value in dependence of given x and z values.
(Inherited from IBivariateInterpolationFunction)
Top
Remarks
This interface extends IBivariateInterpolationFunction by adding the ability to retrieve the rate of change of the interpolated function along each axis. This is useful in scenarios such as optimization, sensitivity analysis, or when gradient information is required for further calculations.
See Also