FunctionMathFindMaximum(FuncDouble, Double, Double) Method
            Maximizes a function in the vicinity of a given point.
            
Namespace: Meta.Numerics.AnalysisAssembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
public static Extremum FindMaximum(
	Func<double, double> f,
	double x
)
Public Shared Function FindMaximum ( 
	f As Func(Of Double, Double),
	x As Double
) As Extremum
public:
static Extremum^ FindMaximum(
	Func<double, double>^ f, 
	double x
)
static member FindMaximum : 
        f : Func<float, float> * 
        x : float -> Extremum 
- f  FuncDouble, Double
 - The function.
 - x  Double
 - A point suspected to be near the maximum. The search begins at this point.
 
ExtremumThe maximum.