MatrixTEnumerateRowsIndexed(Int32, Int32) Method |
Returns an IEnumerable that can be used to iterate through a subset of all rows of the matrix and their index.
Namespace: Altaxo.Calc.LinearAlgebraAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public IEnumerable<(int , Vector<T> )> EnumerateRowsIndexed(
int index,
int length
)
Parameters
- index Int32
- The row to start enumerating over.
- length Int32
- The number of rows to enumerating over.
Return Value
IEnumerableValueTupleInt32,
VectorT[Missing <returns> documentation for "M:Altaxo.Calc.LinearAlgebra.Matrix`1.EnumerateRowsIndexed(System.Int32,System.Int32)"]
Remarks
The enumerator returns a Tuple with the first value being the row index
and the second value being the value of the row at that index.
See Also