Click or drag to resize

NelderMeadMinimize(VectorDouble, CancellationToken, ActionDouble) Method

Minimizes the given cost function with cancellation support and progress reporting.

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> initialvector,
	CancellationToken cancellationToken,
	Action<double> newMinimalValueFound
)

Parameters

initialvector  VectorDouble
The starting vector for the minimization.
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