Click or drag to resize

NelderMeadSimplexFindMinimum(IObjectiveFunction, VectorDouble) Method

Finds the minimum of the objective function without an initial perturbation, the default values used by fminsearch() in Matlab are used instead http://se.mathworks.com/help/matlab/math/optimizing-nonlinear-functions.html#bsgpq6p-11

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

Parameters

objectiveFunction  IObjectiveFunction
The objective function, no gradient or hessian needed
initialGuess  VectorDouble
The initial guess

Return Value

MinimizationResult
The minimum point

Implements

IUnconstrainedMinimizerFindMinimum(IObjectiveFunction, VectorDouble)
See Also