Click or drag to resize

OptimizerMultivariableFunctionDerivativeResults Constructor (Double, Double, Double, Double)

Initializes a new instance.

Namespace:  AGI.Foundation.NumericalMethods
Assembly:  AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public OptimizerMultivariableFunctionDerivativeResults(
	double[] variables,
	double[] costFunctionGradient,
	double[][] equalityConstraintGradients,
	double[][] inequalityConstraintGradients
)

Parameters

variables
Type: SystemDouble
The variables that were used to evaluate the function's derivative.
costFunctionGradient
Type: SystemDouble
The gradient of the cost function with respect to each variable.
equalityConstraintGradients
Type: SystemDouble
The gradients of each equality constraint with respect to each variable.
inequalityConstraintGradients
Type: SystemDouble
The gradients of each inequality constraint with respect to each variable.
See Also