Click or drag to resize

BandMatrixStorageTOfMatrix Method

Creates a band matrix storage from another matrix storage.

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> OfMatrix(
	MatrixStorage<T> matrix,
	int lowerBandwidth,
	int upperBandwidth
)

Parameters

matrix  MatrixStorageT
The source matrix storage.
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