LineSearchMethodSearch Method | 
Minimize the given cost function
Namespace: Altaxo.Calc.OptimizationAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3261.0 (4.8.3261.0)
Syntaxpublic 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
VectorDoubleThe point where the given const function is minimal.
See Also