MatrixTEnumerateColumnsIndexed Method |
Returns an IEnumerable that can be used to iterate through all columns 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> )> EnumerateColumnsIndexed()
Return Value
IEnumerableValueTupleInt32,
VectorT[Missing <returns> documentation for "M:Altaxo.Calc.LinearAlgebra.Matrix`1.EnumerateColumnsIndexed"]
Remarks
The enumerator returns a Tuple with the first value being the column index
and the second value being the value of the column at that index.
See Also