Click or drag to resize

GoldenSectionMinimizer Constructor

Initializes a new instance of the GoldenSectionMinimizer class.

Namespace: Altaxo.Calc.Optimization
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public GoldenSectionMinimizer(
	double xTolerance = 1E-05,
	int maxIterations = 1000,
	int maxExpansionSteps = 10,
	double lowerExpansionFactor = 2,
	double upperExpansionFactor = 2
)

Parameters

xTolerance  Double  (Optional)
The tolerance for the x-interval width.
maxIterations  Int32  (Optional)
The maximum number of search iterations.
maxExpansionSteps  Int32  (Optional)
The maximum number of bracketing expansion steps.
lowerExpansionFactor  Double  (Optional)
The factor used to expand the lower bound.
upperExpansionFactor  Double  (Optional)
The factor used to expand the upper bound.
See Also