BfgsBMinimizerFindMinimum Method |
Find the minimum of the objective function given lower and upper bounds
Namespace: Altaxo.Calc.OptimizationAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax 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
MinimizationResultThe MinimizationResult which contains the minimum and the ExitCondition
See Also