Constructs a symmetric band matrix.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static BandMatrix<T> CreateSymmetricBanded<T>(
int rowCount,
int bandwidth
)
Public Shared Function CreateSymmetricBanded(Of T) (
rowCount As Integer,
bandwidth As Integer
) As BandMatrix(Of T)
public:
generic<typename T>
static BandMatrix<T>^ CreateSymmetricBanded(
int rowCount,
int bandwidth
)
static member CreateSymmetricBanded :
rowCount : int *
bandwidth : int -> BandMatrix<'T>
Parameters
- rowCount
- Type: SystemInt32
The number of rows and columns of the matrix. - bandwidth
- Type: SystemInt32
The upper and lower bandwidth.
Type Parameters
- T
Return Value
Type:
BandMatrixTA
BandMatrixT.
Reference