Matrix<T>.GetRow<R>(R) Method

Gets the row with the specified row key.

Definition

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

Parameters

key  R
The key of the row to be returned.

Type Parameters

R

Return Value

Vector<T>
The row with key key.

Exceptions

InvalidOperationException

The matrix does not have a row index.

InvalidCastException

The element type of the row index is not R.

KeyNotFoundException

key was not found in the row index.

See Also