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