Constructor variables of type double.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public DenseLP(
	double[,] a,
	double[] b,
	double[] c
)
Visual Basic (Declaration)
Public Sub New ( _
	a As Double(,), _
	b As Double(), _
	c As Double() _
)
Visual C++
public:
DenseLP(
	array<double,2>^ a, 
	array<double>^ b, 
	array<double>^ c
)

Parameters

a
Type: array< System..::.Double ,2>[,](,)[,]
A double matrix with coefficients of the constraints
b
Type: array< System..::.Double >[]()[]
A double array containing the right-hand side of the constraints.
c
Type: array< System..::.Double >[]()[]
A double array containing the coefficients of the objective function.

Exceptions

ExceptionCondition
System..::.ArgumentException is thrown if the dimensions of a, b.length, and c.length are not consistent

See Also