Returns a row Vector for this instance
starting at the specified row and column and of the
specified length.
Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (Extreme.Numerics)
Syntax
| Visual Basic (Declaration) |
|---|
Public Function GetRow ( _ row As Integer, _ columnRange As Range _ ) As Vector |
| C# |
|---|
public Vector GetRow ( int row, Range columnRange ) |
| C++ |
|---|
public: Vector^ GetRow ( int row, Range columnRange ) |
Parameters
- row (System.Int32)
- The zero-based index of the row.
- columnRange (Extreme.Mathematics.LinearAlgebra.Range)
- The zero-based index of the column containing the first element in the row vector.
Return Value
A row Vector.
Exceptions
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | row is less than zero or greater than or equal to the number of rows - or - The Range specified by columnRange is outside the bounds of the matrix. |