Click or drag to resize

NewtonRaphson Properties

The NewtonRaphson type exposes the following members.

Properties
  NameDescription
Public propertyDerivative
Derivative of function to solve, if available, otherwise null.
Public propertyEpsilon
Epsilon, used in stopping criteria in the Newton-Raphson method.

Default value is 1e-6

Both the Epsilon and the FEpsilon criteria must be met before the method is stopped

Public propertyFEpsilon
F-Epsilon, used in stopping criteria in the Newton-Raphson method.

Default value is 1 (in most cases that is the same as disabling the criteria)

Both the Epsilon and the FEpsilon criteria must be met before the method is stopped

Public propertyFunc
Function to solve
Public propertyMaxIter
Maximum number of iterations. Default 100
Public propertyNewValueAction
Action to perform when a new value is calculated.
Public propertyNumIter
Hold the actual number of iterations for the last solve.
Top
See Also