LineSearchMethodSearch Method |
Minimizes the given cost function along a search direction.
Namespace: Altaxo.Calc.OptimizationAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntaxpublic 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
VectorDoubleThe point where the given cost function is minimal along the search direction.
See Also