Constructs a FloatComplexBandMatrix instance with the specified number of rows, columns, upper and lower bandwidths.

Namespace:  CenterSpace.NMath.Matrix
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public FloatComplexBandMatrix(
	int rows,
	int cols,
	int lowerBandwidth,
	int upperBandwidth
)
Visual Basic (Declaration)
Public Sub New ( _
	rows As Integer, _
	cols As Integer, _
	lowerBandwidth As Integer, _
	upperBandwidth As Integer _
)
Visual C++
public:
FloatComplexBandMatrix(
	int rows, 
	int cols, 
	int lowerBandwidth, 
	int upperBandwidth
)

Parameters

rows
Type: System..::.Int32
The number of matrix rows.
cols
Type: System..::.Int32
The number of matrix columns.
lowerBandwidth
Type: System..::.Int32
The lower bandwidth.
upperBandwidth
Type: System..::.Int32
The upper bandwidth.

Exceptions

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

See Also