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,
Range rowRange
)
Public Function GetColumn (
column As Integer,
rowRange As Range
) As Vector(Of T)
public:
Vector<T>^ GetColumn(
int column,
Range rowRange
)
member GetColumn :
column : int *
rowRange : Range -> Vector<'T>
Parameters
- column
- Type: SystemInt32
The zero-based index of the column. - rowRange
- Type: Extreme.MathematicsRange
A Range value that specifies
the range of elements that are to make up the new vector.
Return Value
Type:
VectorTA row
VectorT.
Exception | Condition |
---|
ArgumentOutOfRangeException | column is less than zero or greater
than or equal to the number of rows
- or -
The Range specified by rowRange
is outside the bounds of the matrix.
|
Reference