Matrix<T>.GetRowCore Method

Returns a row vector for this instance starting at the specified row and column 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> GetRowCore(
	int row,
	Slice columnSlice,
	Intent intent
)

Parameters

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

Return Value

Vector<T>
A row Vector<T>.

See Also