Finds a zero of a function starting from an initial guess.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static double FindZero(
this Func<double, double> targetFunction,
Func<double, double> derivativeOfTargetFunction,
double initialGuess,
double lowerBound,
double upperBound
)
<ExtensionAttribute>
Public Shared Function FindZero (
targetFunction As Func(Of Double, Double),
derivativeOfTargetFunction As Func(Of Double, Double),
initialGuess As Double,
lowerBound As Double,
upperBound As Double
) As Double
public:
[ExtensionAttribute]
static double FindZero(
Func<double, double>^ targetFunction,
Func<double, double>^ derivativeOfTargetFunction,
double initialGuess,
double lowerBound,
double upperBound
)
[<ExtensionAttribute>]
static member FindZero :
targetFunction : Func<float, float> *
derivativeOfTargetFunction : Func<float, float> *
initialGuess : float *
lowerBound : float *
upperBound : float -> float
Parameters
- targetFunction
- Type: SystemFuncDouble, Double
A delegate that represents a function of one variable that specifies the function on the left-hand
side of the equation. - derivativeOfTargetFunction
- Type: SystemFuncDouble, Double
A delegate that represents a function of one variable that specifies the derivative
function of targetFunction. - initialGuess
- Type: SystemDouble
An initial guess for ther zero. - lowerBound
- Type: SystemDouble
The lower bound of the interval that contains the root. - upperBound
- Type: SystemDouble
The upper bound of the interval that contains the root.
Return Value
Type:
DoubleThe best approximation to a zero of
targetFunction.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
FuncDouble,
Double. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
Use this method when you have very little information about the location of the zero.
Reference