Click or drag to resize

IROMatrixLevel1TEnumerateElementsIndexed Method

Enumerates the matrix elements with their indices.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
IEnumerable<(int row, int column, T )> EnumerateElementsIndexed(
	Zeros zeros = Zeros.AllowSkip
)

Parameters

zeros  Zeros  (Optional)
Whether zero elements may be skipped for sparse/banded matrices.

Return Value

IEnumerableValueTupleInt32, Int32, T
An enumeration of (row, column, value) tuples.
See Also