TensorSplineGridSurface.EvaluateHessian Method

Evaluates the Hessian matrix at the specified point.

Definition

Namespace: Numerics.NET.Curves.Surfaces
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.1.0
C#
public void EvaluateHessian(
	ReadOnlySpan<double> point,
	Span<double> hessian
)

Parameters

point  ReadOnlySpan<Double>
The coordinates of the point.
hessian  Span<Double>
A span to receive the Hessian in row-major order. Length must equal dimension².

Exceptions

ArgumentExceptionThrown when point or hessian dimensions are incorrect.

See Also