Click or drag to resize

NelderMeadMinimize(VectorDouble, CancellationToken, ActionDouble) Method

Minimizes the given cost function starting from an initial simplex.

Namespace: Altaxo.Calc.Optimization
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public void Minimize(
	Vector<double>[] initialsimplex,
	CancellationToken cancellationToken,
	Action<double> newMinimalValueFound
)

Parameters

initialsimplex  VectorDouble
The initial simplex to start from.
cancellationToken  CancellationToken
A token used to request cancellation.
newMinimalValueFound  ActionDouble
A callback that is invoked whenever a new minimum function value is found. The value passed is the new minimum.
See Also