Click or drag to resize

AnnealingMinimizerMinimize(MultiVariableFunction, DoubleVector) Method

Note: This API is now obsolete.

Minimizes the given function using the annealing schedule currently associated with this minimizer.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
[ObsoleteAttribute("This method is obsolete. Call method Minimize( DoubleFunctional f, DoubleVector x )")]
public DoubleVector Minimize(
	MultiVariableFunction f,
	DoubleVector x
)

Parameters

f  MultiVariableFunction
The function to minimize.
x  DoubleVector
The starting point.

Return Value

DoubleVector
An estimate of the global minimum of function, computed using the annealing schedule currently associated with this minimizer.

Implements

IMultiVariableMinimizerMinimize(MultiVariableFunction, DoubleVector)
Remarks
Iteration stops when the current annealing schedule has completed.
See Also