NelderMeadMinimize(VectorDouble, CancellationToken, ActionDouble) Method |
Minimizes the given cost function starting from an initial simplex.
Namespace: Altaxo.Calc.OptimizationAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntaxpublic 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