Click or drag to resize

BfgsBMinimizerFindMinimum Method

Find the minimum of the objective function given lower and upper bounds

Namespace: Altaxo.Calc.Optimization
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public MinimizationResult FindMinimum(
	IObjectiveFunction objective,
	Vector<double> lowerBound,
	Vector<double> upperBound,
	Vector<double> initialGuess
)

Parameters

objective  IObjectiveFunction
The objective function, must support a gradient
lowerBound  VectorDouble
The lower bound
upperBound  VectorDouble
The upper bound
initialGuess  VectorDouble
The initial guess

Return Value

MinimizationResult
The MinimizationResult which contains the minimum and the ExitCondition
See Also