TriangularMatrix<T>.GetSymmetricBandedView Method

Returns a symmetric band matrix view or copy of this matrix.

Definition

Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.5.0
C#
public abstract BandMatrix<T> GetSymmetricBandedView(
	int bandwidth,
	MatrixTriangle storedTriangle,
	Intent intent
)

Parameters

bandwidth  Int32
The bandwidth of the BandMatrix<T>.
storedTriangle  MatrixTriangle
A MatrixTriangle value that specifies whether the components are to be taken from the upper or lower triangular part of the matrix.
intent  Intent
An Intent value that specifies the intended use of the returned BandMatrix<T>.

Return Value

BandMatrix<T>
A BandMatrix<T> with the same components as the matrix with upper and lower bandwidth equal to bandwidth.

See Also