ContinuousOptimizationMinimizeTFunctionParameter(FuncDoubleMatrix, TFunctionParameter, Double, DoubleMatrix, TFunctionParameter) Method

Finds the minimum of the specified parametric objective function.

Definition

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

Parameters

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

Type Parameters

TFunctionParameter
The type of the function parameter.

Return Value

DoubleMatrix
The argument at which the function is minimized.

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