Click or drag to resize

SparseCompressedRowMatrixStorageTOfIndexedEnumerable(Int32, Int32, IEnumerableValueTupleInt32, Int32, T) Method

Creates a sparse compressed-row matrix storage from indexed tuple values.

Namespace: Altaxo.Calc.LinearAlgebra.Storage
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public static SparseCompressedRowMatrixStorage<T> OfIndexedEnumerable(
	int rows,
	int columns,
	IEnumerable<(int , int , T )> data
)

Parameters

rows  Int32
The number of rows.
columns  Int32
The number of columns.
data  IEnumerableValueTupleInt32, Int32, T
The indexed values.

Return Value

SparseCompressedRowMatrixStorageT
The initialized sparse matrix storage.
See Also