Click or drag to resize

ObjectiveFunctionGradientHessian(FuncVectorDouble, ValueTupleDouble, VectorDouble, MatrixDouble) Method

Objective function where both Gradient and Hessian are available. Greedy evaluation.

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

Parameters

function  FuncVectorDouble, ValueTupleDouble, VectorDouble, MatrixDouble
The combined objective, gradient, and Hessian evaluator.

Return Value

IObjectiveFunction
An objective function that evaluates the value, gradient, and Hessian together.
See Also