Click or drag to resize

NelderMead(FuncVectorDouble, Double) Constructor

Initializes a new instance of the simplex method using the specified cost function.

Namespace: Altaxo.Calc.Optimization
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public NelderMead(
	Func<Vector<double>, double> costFunction
)

Parameters

costFunction  FuncVectorDouble, Double
The cost function to minimize. The argument is a vector of parameters; the return value is the penalty value to be minimized.
See Also