Creates an Column object suitable for adding a new variable to an LP matrix as an empty column.

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

Syntax

C#
Column Column(
	ILPMatrix lp
)
Visual Basic
Function Column ( _
	lp As ILPMatrix _
) As Column

Parameters

lp
Type: ILOG.Concert..::..ILPMatrix
The ILPMatrix object for which to create the new column.

Return Value

The new Column object.

Remarks

Note, that the column of the LP matrix is only created when creating a variable with the returned Column object but not when calling this method.

See Also