Returns a matrix that contains only the specified rows
of the current matrix.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public Matrix<T> GetRows(
int startRow,
int endRow
)
Public Function GetRows (
startRow As Integer,
endRow As Integer
) As Matrix(Of T)
public:
Matrix<T>^ GetRows(
int startRow,
int endRow
)
member GetRows :
startRow : int *
endRow : int -> Matrix<'T>
Parameters
- startRow
- Type: SystemInt32
The zero-based index of
the first row to return. - endRow
- Type: SystemInt32
The zero-based index of
the last row to return.
Return Value
Type:
MatrixTA matrix containing row
startRow
to
endRow of this matrix.
Reference