Creates and returns an empty ILPMatrix object with the specified name.

Namespace: ILOG.Concert
Assembly: ILOG.CPLEX (in ILOG.CPLEX.dll) Version: 22.1.1.0

Syntax

C#
ILPMatrix LPMatrix(
	string name
)
Visual Basic
Function LPMatrix ( _
	name As String _
) As ILPMatrix

Parameters

name
Type: System..::..String
The name for the new ILPMatrix object.

Return Value

The new ILPMatrix object.

Remarks

The new ILPMatrix object is initialized to 0 (zero) columns and 0(zero) rows. It can be populated later using the ILPMatrix manipulation API. The new ILPMatrix object is assigned the name.

See Also