IResizableMatrix<T>.DeleteColumn Method

Deletes a column from a matrix.

Definition

Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
void DeleteColumn(
	int column
)

Parameters

column  Int32
The zero-based index of the column to delete.

Remarks

The number of columns of the matrix is decreased by one.

Exceptions

ArgumentOutOfRangeExceptioncolumn is less than zero or greater than or equal to the number of columns.

See Also