Class NewtonRaphsonRootFinder finds roots of univariate functions using the Newton-Raphson algorithm.

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

Syntax

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

Remarks

The Newton-Raphson method finds the slope of the function at the current point and uses the zero of the tangent line as an estimate of the root.

Inheritance Hierarchy

System..::.Object
  CenterSpace.NMath.Analysis..::.RootFinderBase
    CenterSpace.NMath.Analysis..::.NewtonRaphsonRootFinder

See Also