Click or drag to resize

MoreThuenteLineSearchSearch 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 override Vector<double> Search(
	Vector<double> x,
	Vector<double> s,
	double stp
)

Parameters

x  VectorDouble
Start point of the search.
s  VectorDouble

[Missing <param name="s"/> documentation for "M:Altaxo.Calc.Optimization.MoreThuenteLineSearch.Search(Altaxo.Calc.LinearAlgebra.Vector{System.Double},Altaxo.Calc.LinearAlgebra.Vector{System.Double},System.Double)"]

stp  Double

[Missing <param name="stp"/> documentation for "M:Altaxo.Calc.Optimization.MoreThuenteLineSearch.Search(Altaxo.Calc.LinearAlgebra.Vector{System.Double},Altaxo.Calc.LinearAlgebra.Vector{System.Double},System.Double)"]

Return Value

VectorDouble
The point where the given cost function is minimal along the search direction.
See Also