![]() | Newton |
The NewtonRaphsonRootFinder type exposes the following members.
Name | Description | |
---|---|---|
![]() | NewtonRaphsonRootFinder | Constructs a NewtonRaphsonRootFinder instance with default tolerance and default maximum iterations. |
![]() | NewtonRaphsonRootFinder(Double) | Constructs a NewtonRaphsonRootFinder instance with the given error tolerance. |
![]() | NewtonRaphsonRootFinder(Int32) | Constructs a NewtonRaphsonRootFinder instance with the given maximum number of iterations. |
![]() | NewtonRaphsonRootFinder(Double, Int32) | Constructs a NewtonRaphsonRootFinder instance with the given error tolerance and maximum number of iterations. |
Name | Description | |
---|---|---|
![]() | Error |
Gets the error associated with the root just computed.
(Inherited from RootFinderBase) |
![]() | Iterations |
Gets the number of iterations used computing the last root.
(Inherited from RootFinderBase) |
![]() | MaxIterations |
Gets and sets the maximum number of iterations used in finding roots.
(Inherited from RootFinderBase) |
![]() | MaxIterationsMet |
Returns true if the root just computed stopped because the
maximum number of iterations was reached; otherwise, false.
(Inherited from RootFinderBase) |
![]() | Tolerance |
Gets and sets the error tolerance used in finding roots.
(Inherited from RootFinderBase) |
![]() | ToleranceMet |
Returns true if the root just computed stopped because the
error tolerance was reached; otherwise, false.
(Inherited from RootFinderBase) |
Name | Description | |
---|---|---|
![]() | BracketRoot |
Attempts to bracket a root given the function and an initial guess
near a suspected root.
(Inherited from RootFinderBase) |
![]() | Clone |
Creates a deep copy of this root finder.
(Overrides RootFinderBaseClone) |
![]() | Find(OneVariableFunction, Interval) | Finds a root within the interval. |
![]() | Find(OneVariableFunction, OneVariableFunction, Interval) | Finds a root within the interval. |
![]() | Find(OneVariableFunction, Double, Double) | Finds a root within the interval. |
![]() | Find(OneVariableFunction, OneVariableFunction, Double, Double) | Finds a root within the interval. |
Name | Description | |
---|---|---|
![]() | error_ | The current error. (Inherited from RootFinderBase) |
![]() | iter_ | The current number of iterations performed. (Inherited from RootFinderBase) |
![]() | max_ | The maximum number of iterations. (Inherited from RootFinderBase) |
![]() | tolerance_ | The error tolerance. (Inherited from RootFinderBase) |