Click or drag to resize

ForwardDifferenceGradientObjectiveFunction Constructor

Initializes a new instance of the ForwardDifferenceGradientObjectiveFunction class.

Namespace: Altaxo.Calc.Optimization.ObjectiveFunctions
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public ForwardDifferenceGradientObjectiveFunction(
	IObjectiveFunction valueOnlyObj,
	Vector<double> lowerBound,
	Vector<double> upperBound,
	double relativeIncrement = 1E-05,
	double minimumIncrement = 1E-08
)

Parameters

valueOnlyObj  IObjectiveFunction
The objective function that provides only values.
lowerBound  VectorDouble
The lower bounds.
upperBound  VectorDouble
The upper bounds.
relativeIncrement  Double  (Optional)
The relative forward-difference increment.
minimumIncrement  Double  (Optional)
The minimum forward-difference increment.
See Also