Click or drag to resize

BandDoubleMatrixEnumerateElementsIndexed Method

Returns an enumerable collection of the elements in the matrix, with their row and column indices, and with the option to specify treatment of zeros.

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

Parameters

zeros  Zeros  (Optional)
Specifies how to treat zero elements.

Return Value

IEnumerableValueTupleInt32, Int32, Double
An enumerable collection of the elements in the matrix.

Implements

IROBandMatrixTEnumerateElementsIndexed(Zeros)
IROMatrixLevel1TEnumerateElementsIndexed(Zeros)
See Also