Click or drag to resize

MatrixBuilderTBandOfArray Method

Create a new band matrix as a copy of the given array.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3618.0 (4.8.3618.0)
Syntax
C#
public Matrix<T> BandOfArray(
	T[,] array,
	int lowerBandwidth,
	int upperBandwidth
)

Parameters

array  T
The array to copy.
lowerBandwidth  Int32
The lower bandwidth.
upperBandwidth  Int32
The upper bandwidth.

Return Value

MatrixT
The created matrix.
See Also