Computes a maximum of the specified function.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static OptimizationSolutionReport FindMaximum(
this Func<Vector<double>, double> objectiveFunction,
Vector<double> initialGuess
)
<ExtensionAttribute>
Public Shared Function FindMaximum (
objectiveFunction As Func(Of Vector(Of Double), Double),
initialGuess As Vector(Of Double)
) As OptimizationSolutionReport
public:
[ExtensionAttribute]
static OptimizationSolutionReport^ FindMaximum(
Func<Vector<double>^, double>^ objectiveFunction,
Vector<double>^ initialGuess
)
[<ExtensionAttribute>]
static member FindMaximum :
objectiveFunction : Func<Vector<float>, float> *
initialGuess : Vector<float> -> OptimizationSolutionReport
Parameters
- objectiveFunction
- Type: SystemFuncVectorDouble, Double
A delegate that represents a function of one variable that specifies the objective function. - initialGuess
- Type: Extreme.MathematicsVectorDouble
The starting point for the iteration.
Return Value
Type:
OptimizationSolutionReportA local maximum of
objectiveFunction.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
FuncVectorDouble,
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).
Reference