Click or drag to resize

MatrixTEnumerate Method

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

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public IEnumerable<T> Enumerate()

Return Value

IEnumerableT
An enumeration of the matrix values.
Remarks
The enumerator will include all values, even if they are zero. The ordering of the values is unspecified (not necessarily column-wise or row-wise).
See Also