Matrix.CreateSymmetricBanded<T> Method

Constructs a symmetric band matrix.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static BandMatrix<T> CreateSymmetricBanded<T>(
	int rowCount,
	int bandwidth
)

Parameters

rowCount  Int32
The number of rows and columns of the matrix.
bandwidth  Int32
The upper and lower bandwidth.

Type Parameters

T

Return Value

BandMatrix<T>
A BandMatrix<T>.

See Also