Deletes a series of rows from a matrix.
Namespace: Extreme.Mathematics.LinearAlgebraAssembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 6.0.16073.0 (6.0.16312.0)
void DeleteRows(
int row,
int count
)
Sub DeleteRows (
row As Integer,
count As Integer
)
void DeleteRows(
int row,
int count
)
abstract DeleteRows :
row : int *
count : int -> unit
Parameters
- row
- Type: SystemInt32
The zero-based index of the first row to delete. - count
- Type: SystemInt32
The number of rows to delete.
Exception | Condition |
---|
ArgumentOutOfRangeException | row 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. |
The number of rows of the matrix is decreased by one.
Numerical Libraries
Supported in: 6.0
Reference