Returns a row Vector for this instance over the specified range.

Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (Extreme.Numerics)

Syntax

Visual Basic (Declaration)
Public Function GetRow ( _
	row As Integer, _
	startColumn As Integer, _
	endColumn As Integer _
) As Vector
C#
public Vector GetRow (
	int row,
	int startColumn,
	int endColumn
)
C++
public:
Vector^ GetRow (
	int row, 
	int startColumn, 
	int endColumn
)

Parameters

row (System.Int32)
The zero-based index of the row.
startColumn (System.Int32)
The zero-based index of the column containing the first element in the row vector.
endColumn (System.Int32)
The column index of the last element in the row vector.

Return Value

A row Vector.

Exceptions

ExceptionCondition
ArgumentOutOfRangeExceptionrow is less than zero or greater than or equal to the number of rows

-or-

startColumn is less than zero or greater than or equal to the number of columns.

-or-

endColumn or endRow is less than zero or greater than or equal to the number of columns.