Click or drag to resize

ObjectiveFunctionScalarDerivative Method

Objective function where the first derivative is available.

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

Parameters

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

Return Value

IScalarObjectiveFunction
A scalar objective function that evaluates the value and first derivative.
See Also