IResizableMatrix<T>.DeleteColumns Method

Deletes a series of columns from a matrix.

Definition

Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
void DeleteColumns(
	int column,
	int count
)

Parameters

column  Int32
The zero-based index of the first column to delete.
count  Int32
The number of columns to delete.

Remarks

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

Exceptions

ArgumentOutOfRangeException

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

-or-

count is less than zero or greater than the number of columns from column to the end.

See Also