Constructs a DoubleHermitianBandMatrix instance with the specified number of rows, columns,
and half bandwidth.
Namespace:
CenterSpace.NMath.MatrixAssembly: NMath (in NMath.dll) Version: 5.1.0.0
Syntax
| C# |
|---|
public DoubleHermitianBandMatrix( int order, int halfBandwidth ) |
| Visual Basic (Declaration) |
|---|
Public Sub New ( _ order As Integer, _ halfBandwidth As Integer _ ) |
| Visual C++ |
|---|
public: DoubleHermitianBandMatrix( int order, int halfBandwidth ) |
Parameters
- order
- Type: System..::.Int32
The order of the matrix. This is the number of rows and columns.
- halfBandwidth
- Type: System..::.Int32
The half bandwidth.
Exceptions
| Exception | Condition |
|---|---|
| CenterSpace.NMath.Core..::.InvalidArgumentException | Thrown if the number of rows is less than the bandwidth of the matrix. |