| | Name | Description |
|---|
 | Band(BandMatrixStorageT) |
Create a new band matrix straight from an initialized matrix storage instance.
The storage is used directly without copying.
Intended for advanced scenarios where you're working directly with
storage for performance or interop reasons.
|
 | Band(Int32, Int32, Int32, Int32) |
Create a new band matrix with the given number of rows, columns, and bandwidths.
All stored cells of the matrix will be initialized to zero.
|
 | Band(Int32, Int32, Int32, Int32, T) |
Create a new band matrix and initialize each stored value to the same provided value.
|
 | Band(Int32, Int32, Int32, Int32, T) |
Create a new band matrix with the given number of rows, columns, and bandwidths directly binding to a raw compact band array.
|
 | Band(Int32, Int32, Int32, Int32, FuncInt32, Int32, T) |
Create a new band matrix and initialize each stored value using the provided init function.
|