Click or drag to resize

WolfeLineSearchFindConformingStep(IObjectiveFunctionEvaluation, VectorDouble, Double) Method

Implemented following http://www.math.washington.edu/~burke/crs/408/lectures/L9-weak-Wolfe.pdf

Namespace: Altaxo.Calc.Optimization.LineSearch
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public LineSearchResult FindConformingStep(
	IObjectiveFunctionEvaluation startingPoint,
	Vector<double> searchDirection,
	double initialStep
)

Parameters

startingPoint  IObjectiveFunctionEvaluation
The objective function being optimized, evaluated at the starting point of the search
searchDirection  VectorDouble
Search direction
initialStep  Double
Initial size of the step in the search direction

Return Value

LineSearchResult

[Missing <returns> documentation for "M:Altaxo.Calc.Optimization.LineSearch.WolfeLineSearch.FindConformingStep(Altaxo.Calc.Optimization.IObjectiveFunctionEvaluation,Altaxo.Calc.LinearAlgebra.Vector{System.Double},System.Double)"]

See Also