Matrix<T>.GetColumn(Int32, Range) Method

Returns a column vector for this instance starting at the specified column and row and of the specified length.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public Vector<T> GetColumn(
	int column,
	Range rowRange
)

Parameters

column  Int32
The zero-based index of the column.
rowRange  Range
A Range value that specifies the range of elements that are to make up the new vector.

Return Value

Vector<T>
A row Vector<T>.

Exceptions

ArgumentOutOfRangeExceptioncolumn 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.

See Also