Isolates a root in the vicinity of a given point.

Namespace:  Meta.Numerics.Functions
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 1.5.0.0 (1.5.0.0)

Syntax

         
 C#  Visual Basic  Visual C++ 
public static double FindZero(
	Function<double, double> f,
	double x
)
Public Shared Function FindZero ( _
	f As Function(Of Double, Double), _
	x As Double _
) As Double
public:
static double FindZero(
	Function<double, double>^ f, 
	double x
)

Parameters

f
Function<(Of <(Double, Double>)>)
The function whoose zero is sought.
x
Double
A ordinate believed to be near the sought zero.

Return Value

An ordinate at which the function has a zero.

See Also