Click or drag to resize

LineSearchMethodSearch Method

Minimize the given cost function

Namespace: Altaxo.Calc.Optimization
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public abstract Vector<double> Search(
	Vector<double> x,
	Vector<double> direction,
	double step
)

Parameters

x  VectorDouble
Start point of search.
direction  VectorDouble
Direction of search.
step  Double
Scaling factor to calculate the second evaluation point after the start point. The second evaluation point is calculated from x+direction*step.

Return Value

VectorDouble
The point where the given const function is minimal.
See Also