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: 25.1.421.0 (25.1.421.0)
Syntax
public OptimizerMultivariableFunctionDerivativeResults(
	double[] variables,
	double[] costFunctionGradient,
	double[][] equalityConstraintGradients,
	double[][] inequalityConstraintGradients
)

Parameters

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