FunctionMathFindZero(FuncDouble, Double, Interval) Method
            Isolates a root within a given interval.
            
Namespace: Meta.Numerics.AnalysisAssembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
public static double FindZero(
	Func<double, double> f,
	Interval bracket
)
Public Shared Function FindZero ( 
	f As Func(Of Double, Double),
	bracket As Interval
) As Double
public:
static double FindZero(
	Func<double, double>^ f, 
	Interval bracket
)
static member FindZero : 
        f : Func<float, float> * 
        bracket : Interval -> float 
- f  FuncDouble, Double
 - The function whoose zero is sought.
 - bracket  Interval
 - An interval bracketing the root.
 
DoubleAn ordinate within the bracket at which the function has a zero.