MatrixTEnumerateRowsIndexed Method |
Returns an IEnumerable that can be used to iterate through 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()
Return Value
IEnumerableValueTupleInt32,
VectorT[Missing <returns> documentation for "M:Altaxo.Calc.LinearAlgebra.Matrix`1.EnumerateRowsIndexed"]
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