Click or drag to resize

MatrixBuilderTBandOfMatrix Method

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

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

Parameters

matrix  MatrixT
The matrix to copy.
lowerBandwidth  Int32
The lower bandwidth.
upperBandwidth  Int32
The upper bandwidth.

Return Value

MatrixT
The created matrix.
See Also