Matrix<T>.GetColumn(Int32, Intent) Method

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

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public Vector<T> GetColumn(
	int column,
	Intent intent
)

Parameters

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

Return Value

Vector<T>
A row Vector<T>.

Exceptions

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

See Also