Click or drag to resize

ObjectiveFunctionHessian(FuncVectorDouble, Double, FuncVectorDouble, MatrixDouble) Method

Objective function where the Hessian is available. Lazy evaluation.

Namespace: Altaxo.Calc.Optimization
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public static IObjectiveFunction Hessian(
	Func<Vector<double>, double> function,
	Func<Vector<double>, Matrix<double>> hessian
)

Parameters

function  FuncVectorDouble, Double
The objective function.
hessian  FuncVectorDouble, MatrixDouble
The Hessian function.

Return Value

IObjectiveFunction
An objective function that evaluates the value eagerly and the Hessian lazily.
See Also