DenseMatrix<T>.GetRowEnumerator Method

Constructs an IEnumerator object that can be used to iterate over the rows of this matrix.

Definition

Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public override IEnumerator<Vector<T>> GetRowEnumerator(
	Intent intent
)

Parameters

intent  Intent
 

Return Value

IEnumerator<Vector<T>>
An object that implements IEnumerator<T> of Vector<T>.

See Also