Click or drag to resize

LineSearchMethodSearch Method

Minimizes the given cost function along a search direction.

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

Parameters

x  VectorDouble
Start point of the search.
direction  VectorDouble
Search direction.
step  Double
Scaling factor used 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 cost function is minimal along the search direction.
See Also