FunctionMathFindZero Method (FuncDouble, Double, Double) |
Isolates a root in the vicinity of a given point.
Namespace:
Meta.Numerics.Analysis
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public static double FindZero(
Func<double, double> f,
double x
)
Public Shared Function FindZero (
f As Func(Of Double, Double),
x As Double
) As Double
public:
static double FindZero(
Func<double, double>^ f,
double x
)
static member FindZero :
f : Func<float, float> *
x : float -> float
Parameters
- f
- Type: SystemFuncDouble, Double
The function whoose zero is sought. - x
- Type: SystemDouble
A ordinate believed to be near the sought zero.
Return Value
Type:
DoubleAn ordinate at which the function has a zero.
See Also