Click or drag to resize

MatrixTEnumerateIndexed(Zeros) Method

Returns an IEnumerable that can be used to iterate through all values of the matrix and their index.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public IEnumerable<(int , int , T )> EnumerateIndexed(
	Zeros zeros
)

Parameters

zeros  Zeros

[Missing <param name="zeros"/> documentation for "M:Altaxo.Calc.LinearAlgebra.Matrix`1.EnumerateIndexed(Altaxo.Calc.LinearAlgebra.Zeros)"]

Return Value

IEnumerableValueTupleInt32, Int32, T

[Missing <returns> documentation for "M:Altaxo.Calc.LinearAlgebra.Matrix`1.EnumerateIndexed(Altaxo.Calc.LinearAlgebra.Zeros)"]

Remarks
The enumerator returns a Tuple with the first two values being the row and column index and the third value being the value of the element at that index. The enumerator will include all values, even if they are zero.
See Also