Class GoldenMinimizer performs a golden section search for a minimium of a function within an interval known to contain a minimum.

Namespace:  CenterSpace.NMath.Analysis
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
[SerializableAttribute]
public class GoldenMinimizer : MinimizerBase, 
	IOneVariableMinimizer, ICloneable
Visual Basic (Declaration)
<SerializableAttribute> _
Public Class GoldenMinimizer _
	Inherits MinimizerBase _
	Implements IOneVariableMinimizer, ICloneable
Visual C++
[SerializableAttribute]
public ref class GoldenMinimizer : public MinimizerBase, 
	IOneVariableMinimizer, ICloneable

Remarks

Iteration stops when either the estimated error is less than a specified error tolerance, or a specified maximum number of iterations is reached.
The golden section search method is linearly convergent.

Inheritance Hierarchy

System..::.Object
  CenterSpace.NMath.Analysis..::.MinimizerBase
    CenterSpace.NMath.Analysis..::.GoldenMinimizer

See Also