Creates an IColumn object suitable for adding a new variable to an LP matrix as a new column. Note, that the column of the LP matrix is only created when creating a variable with the returned IColumn object but not when calling this method.

Namespace: ILOG.Concert
Assembly: oplall (in oplall.dll)

Syntax

C#
IColumnArray ColumnArray(
	ILPMatrix lp,
	int num,
	int[][] ind,
	double[][] val
)

Parameters

lp
Type: ILPMatrix
num
Type: System..::..Int32
ind
Type: array<array<System..::..Int32>[]()[][]>[]()[][]
val
Type: array<array<System..::..Double>[]()[][]>[]()[][]

Return Value

An IColumn object suitable for creating a new column in lp with nonzeros as specified in arguments ind and val.

See Also