The methods of the EquationSolver class are listed below. For a complete list of EquationSolver class members, see the EquationSolver Members topic.
Bisection | Overloaded. Implements the Interval Bisection Method which will converge if the algorithm is able to find an initial bracketing interval. |
Brent | Overloaded. Implements the Van Wijngaarden-Dekker-Brent Method the recommended approach in order to find the solution for a general one-dimensional function where the function's values only (and not its derivative or functional form) are available. |
Equals (inherited from Object) | Determines whether the specified Object is equal to the current Object. |
GetHashCode (inherited from Object) | Serves as a hash function for a particular type, suitable for use in hashing algorithms and data structures like a hash table. |
GetType (inherited from Object) | Gets the Type of the current instance. |
NewtonRaphson | Overloaded. Implements the Newton-Raphson method where the initial point is taken to be the origin and the maximum number of iterations is 1,000. |
NewtonRaphsonFailSafe | Overloaded. Implements the Fail-Safe Newton-Raphson Method with a zero initial value and the maximum number of Raphson-Newton steps being 1,000. |
RegulaFalsi | Overloaded. Implements Regula Falsi (or Method of False Position) which is a variant of the Secant method which is less efficient but more stable. |
Ridders | Overloaded. Implements Ridders' Method which is a powerful variant of the Secant method, without asking for an initial bracketing interval to be set. |
Secant | Overloaded. Implements the Secant Method without the initial bracketing interval needing to be given. |
SetFunction | Submits a new function for analysis. |
ToString (inherited from Object) | Returns a String that represents the current Object. |
Finalize (inherited from Object) | Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection. |
MemberwiseClone (inherited from Object) | Creates a shallow copy of the current Object. |
EquationSolver Class | WebCab.Libraries.Math.EquationSolver Namespace