Matrix<T>.GetColumnCore Method

Returns a column vector for this instance starting at the specified column and row and of the specified length.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
protected virtual Vector<T> GetColumnCore(
	int column,
	Slice rowSlice,
	Intent intent
)

Parameters

column  Int32
The zero-based index of the column.
rowSlice  Slice
A slice that specifies which elements of the column to get.
intent  Intent
An Intent value that specifies the intended use of the column vector.

Return Value

Vector<T>
A column Vector<T>.

See Also