IResizableMatrix<T>.DeleteRows Method

Deletes a series of rows from a matrix.

Definition

Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
void DeleteRows(
	int row,
	int count
)

Parameters

row  Int32
The zero-based index of the first row to delete.
count  Int32
The number of rows to delete.

Remarks

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

Exceptions

ArgumentOutOfRangeExceptionrow is less than zero or greater than or equal to the number of rows.

-or-

count is less than zero or greater than the number of rows from row to the end.

See Also