Matrix<T>.GetColumn<C>(C) Method

Gets the column with the specified column key.

Definition

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

Parameters

key  C
The key of the column to be returned.

Type Parameters

C

Return Value

Vector<T>
The column with key key.

Exceptions

InvalidOperationException

The matrix does not have a column index.

InvalidCastException

The element type of the column index is not C.

KeyNotFoundException

key was not found in the column index.

See Also