IResizableMatrix<T>.DeleteRow Method

Deletes a row from a matrix.

Definition

Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
void DeleteRow(
	int row
)

Parameters

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

Remarks

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

Exceptions

ArgumentOutOfRangeException

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

See Also