DiagonalMatrix<T>.GetRowCore Method

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

Definition

Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
protected override 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