Click or drag to resize

NewtonRaphsonLineSearch(CostFunction, EndCriteria, Int32, Double) Constructor

Initializes a new instance of the NewtonRaphsonLineSearch class.

Namespace: Altaxo.Calc.Optimization
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public NewtonRaphsonLineSearch(
	CostFunction costfunction,
	EndCriteria endcriteria,
	int maxiteration,
	double tolerance
)

Parameters

costfunction  CostFunction
Nonlinear cost function to minimize.
endcriteria  EndCriteria
User-specified ending criteria.
maxiteration  Int32
Maximum number of Newton iterations.
tolerance  Double
Termination tolerance (based on the step size along the search direction).
See Also