Returns a column Vector for this instance
starting at the specified column and row and of the
specified length.
Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (Extreme.Numerics)
Syntax
| Visual Basic (Declaration) |
|---|
Public Function GetColumn ( _ column As Integer, _ rowRange As Range _ ) As Vector |
| C# |
|---|
public Vector GetColumn ( int column, Range rowRange ) |
| C++ |
|---|
public: Vector^ GetColumn ( int column, Range rowRange ) |
Parameters
- column (System.Int32)
- The zero-based index of the column.
- rowRange (Extreme.Mathematics.LinearAlgebra.Range)
- A Range value that specifies the range of components that are to make up the new vector.
Return Value
A row Vector.
Exceptions
| 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. |