Click or drag to resize
Accord.NET (logo)

NelderMead Constructor (Int32, Func< Double[] , Double> )

Creates a new NelderMead non-linear optimization algorithm.

Namespace:  Accord.Math.Optimization
Assembly:  Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax
public NelderMead(
	int numberOfVariables,
	Func<double[], double> function
)
Request Example View Source

Parameters

numberOfVariables
Type: System.Int32
The number of free parameters in the optimization problem.
function
Type: System.Func<Double[], Double>
The objective function whose optimum values should be found.
See Also