FunctionMath.FindMaximum(Func<Vector<Double>, Double>, Vector<Double>) Method

Computes a maximum of the specified function.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static OptimizationSolutionReport FindMaximum(
	this Func<Vector<double>, double> objectiveFunction,
	Vector<double> initialGuess
)

Parameters

objectiveFunction  Func<Vector<Double>, Double>
A delegate that represents a function of one variable that specifies the objective function.
initialGuess  Vector<Double>
The starting point for the iteration.

Return Value

OptimizationSolutionReport
A 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 Func<Vector<Double>, 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).

Exceptions

ConvergenceExceptionThe algorithm failed to converge and ThrowExceptionOnFailure is set to true.

See Also