|  | RootFinderD Class | 
 Inheritance Hierarchy
Inheritance HierarchyNamespace: DigitalRune.Mathematics.Analysis
 Syntax
SyntaxThe RootFinderD type exposes the following members.
 Constructors
Constructors| Name | Description | |
|---|---|---|
|  | RootFinderD | 
            Initializes a new instance of the RootFinderD class.
             | 
 Methods
Methods| Name | Description | |
|---|---|---|
|  | Equals | (Inherited from Object.) | 
|  | ExpandBracket(Double, Double) | 
            Takes the initial guessed range [x0, x1] and expands
            this interval such that the root xroot where 
            f(xroot) = 0 is in the interval.
             | 
|  | ExpandBracket(Double, Double, Double) | 
            Takes the initial guessed range [x0, x1] and expands
            this interval such that x with f(x) = y
            is in the interval.
             | 
|  | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from Object.) | 
|  | FindRoot(Double, Double) | 
            Finds the root of the given function.
             | 
|  | FindRoot(Double, Double, Double) | 
            Finds the x for the given function, such that f(x) = y.
             | 
|  | FindRoot(FuncDouble, Double, Double, Double) | 
            Finds the root of the given function.
             | 
|  | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) | 
|  | GetType | Gets the Type of the current instance.(Inherited from Object.) | 
|  | MemberwiseClone | Creates a shallow copy of the current Object.(Inherited from Object.) | 
|  | ToString | Returns a string that represents the current object.(Inherited from Object.) | 
 Properties
Properties| Name | Description | |
|---|---|---|
|  | Epsilon | Obsolete. 
            Gets or sets the tolerance value used for comparing x values (same as EpsilonX). 
             | 
|  | EpsilonX | 
            Gets or sets the tolerance value used for comparing x values. 
             | 
|  | EpsilonY | 
            Gets or sets the tolerance value used for comparing function values. 
             | 
|  | Function | 
            Gets the function f(x), which root we want to find.
             | 
|  | MaxNumberOfIterations | 
            Gets or sets the maximum number of iterations.
             | 
|  | NumberOfIterations | 
            Gets or sets the number of iterations of the last 
            FindRoot(Double, Double) method call.
             | 
 Remarks
Remarks See Also
See Also