Click or drag to resize

MatrixTEnumerateColumnsIndexed(Int32, Int32) Method

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

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public IEnumerable<(int , Vector<T> )> EnumerateColumnsIndexed(
	int index,
	int length
)

Parameters

index  Int32
The column to start enumerating over.
length  Int32
The number of columns to enumerating over.

Return Value

IEnumerableValueTupleInt32, VectorT
An enumeration of indexed matrix columns.
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