Matrix<T>.GetRow(Int32) Method

Returns a row vector for this instance that points at the specified row.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public Vector<T> GetRow(
	int row
)

Parameters

row  Int32
The zero-based index of the row.

Return Value

Vector<T>
A row Vector<T>.

Exceptions

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

See Also