Matrix<T>.GetRow(Int32, Intent) 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,
	Intent intent
)

Parameters

row  Int32
The zero-based index of the row.
intent  Intent
An Intent value that specifies the intended use of the row vector.

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