ContinuousOptimizationMaximize(FuncDoubleMatrix, Double, DoubleMatrix) Method

Finds the maximum of the specified objective function.

Definition

Namespace: Novacta.Analytics
Assembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
C#
public static DoubleMatrix Maximize(
	Func<DoubleMatrix, double> objectiveFunction,
	DoubleMatrix initialArgument
)

Parameters

objectiveFunction  FuncDoubleMatrix, Double
The objective function to be maximized.
initialArgument  DoubleMatrix
The argument at which the method starts the search for optimality.

Return Value

DoubleMatrix
The argument at which the function is maximized.

Remarks

It is assumed that the objectiveFunction will accept row vectors as valid representations of an argument. As a consequence, initialArgument is expected to be a row vector.

Exceptions

ArgumentNullExceptionobjectiveFunction is null.
-or-
initialArgument is null.
ArgumentExceptioninitialArgument is not a row vector.

See Also