Click or drag to resize

ObjectiveFunctionScalarSecondDerivative Method

Objective function where the first and second derivatives are available.

Namespace: Altaxo.Calc.Optimization
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public static IScalarObjectiveFunction ScalarSecondDerivative(
	Func<double, double> function,
	Func<double, double> derivative,
	Func<double, double> secondDerivative
)

Parameters

function  FuncDouble, Double
The scalar objective function.
derivative  FuncDouble, Double
The first derivative of the objective function.
secondDerivative  FuncDouble, Double
The second derivative of the objective function.

Return Value

IScalarObjectiveFunction
A scalar objective function that evaluates the value and both derivatives.
See Also