Returns a row vector for this instance
starting at the specified row and column and of the
specified length.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public Vector<T> GetRow(
int row,
int startColumn,
int endColumn,
int columnStride
)
Public Function GetRow (
row As Integer,
startColumn As Integer,
endColumn As Integer,
columnStride As Integer
) As Vector(Of T)
public:
Vector<T>^ GetRow(
int row,
int startColumn,
int endColumn,
int columnStride
)
member GetRow :
row : int *
startColumn : int *
endColumn : int *
columnStride : int -> Vector<'T>
Parameters
- row
- Type: SystemInt32
The zero-based index of the row. - startColumn
- Type: SystemInt32
The zero-based index of the
column containing the first element in the row vector.
- endColumn
- Type: SystemInt32
The column index of the last element in the
row vector. - columnStride
- Type: SystemInt32
The increment for the index
in the row VectorT corresponding to an
increment of one in the new vector.
Return Value
Type:
VectorTA row
VectorT.
Exception | Condition |
---|
ArgumentOutOfRangeException | row is less than zero or greater
than or equal to the number of rows
-or- startColumn is less
than zero or greater than or equal to the number of columns. -or- startColumn or endColumn is less
than zero or greater than or equal to the number of columns. |
Reference