Removes a set of columns from the invoking LP matrix.

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

Syntax

C#
void RemoveCols(
	int[] ind
)
Visual Basic
Sub RemoveCols ( _
	ind As Integer() _
)

Parameters

ind
Type: array<System..::..Int32>[]()[][]
An array containing the indices of the columns to be removed.

Remarks

The indices of columns to be removed are specified in the array ind. Columns that are not removed remain in their original order but are assigned new column indices from 0 (zero) to getNcols-1.

See Also