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: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
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