Click or drag to resize

BandMatrixStorageTOfArray Method

Creates a band matrix storage from a two-dimensional array.

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> OfArray(
	T[,] array,
	int lowerBandwidth,
	int upperBandwidth
)

Parameters

array  T
The source array.
lowerBandwidth  Int32
The lower bandwidth of the target storage.
upperBandwidth  Int32
The upper bandwidth of the target storage.

Return Value

BandMatrixStorageT
The initialized band matrix storage.
See Also