|
GoldfarbIdnani Constructor (Double, Double, Double, Double, Int32)
|
Namespace:
Accord.Math.Optimization
Assembly:
Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax public GoldfarbIdnani(
double[,] quadratic,
double[] linear,
double[,] constraintMatrix,
double[] constraintValues,
int numberOfEqualities = 0
)
Public Sub New (
quadratic As Double(,),
linear As Double(),
constraintMatrix As Double(,),
constraintValues As Double(),
Optional numberOfEqualities As Integer = 0
)
Request Example
View SourceParameters
- quadratic
- Type: SystemDouble
The symmetric matrix of quadratic terms defining the objective function. - linear
- Type: SystemDouble
The vector of linear terms defining the objective function. - constraintMatrix
- Type: SystemDouble
The constraints matrix A. - constraintValues
- Type: SystemDouble
The constraints values b. - numberOfEqualities (Optional)
- Type: SystemInt32
The number of equalities in the constraints.
See Also