Constructs a DoubleHermitianBandMatrix instance with the specified number of rows, columns, and half bandwidth.

Namespace:  CenterSpace.NMath.Matrix
Assembly:  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

ExceptionCondition
CenterSpace.NMath.Core..::.InvalidArgumentExceptionThrown if the number of rows is less than the bandwidth of the matrix.

See Also