Click or drag to resize

BandMatrixStorageTOfIndexedEnumerable(Int32, Int32, Int32, Int32, IEnumerableValueTupleInt32, Int32, T) Method

Creates a band matrix storage from indexed values.

Namespace: Altaxo.Calc.LinearAlgebra.Storage
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3618.0 (4.8.3618.0)
Syntax
C#
public static BandMatrixStorage<T> OfIndexedEnumerable(
	int rows,
	int columns,
	int lowerBandwidth,
	int upperBandwidth,
	IEnumerable<(int row, int column, T )> data
)

Parameters

rows  Int32
The number of rows.
columns  Int32
The number of columns.
lowerBandwidth  Int32
The lower bandwidth of the target storage.
upperBandwidth  Int32
The upper bandwidth of the target storage.
data  IEnumerableValueTupleInt32, Int32, T
The indexed values.

Return Value

BandMatrixStorageT
The initialized band matrix storage.
See Also