Click or drag to resize

DoubleComplexBandMatrix(DoubleComplexMatrix, Int32, Int32) Constructor

Constructs a DoubleComplexBandMatrix instance by extracting a band of entries from a general matrix.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public DoubleComplexBandMatrix(
	DoubleComplexMatrix A,
	int lowerBandwidth,
	int upperBandwidth
)

Parameters

A  DoubleComplexMatrix
A general matrix.
lowerBandwidth  Int32
The number of subdiagonals to extract. This is also the lower bandwidth of the resulting banded matrix.
upperBandwidth  Int32
The number of superdiagonals to extract. This is also the upper bandwidth of the resulting banded matrix.
Exceptions
ExceptionCondition
InvalidArgumentExceptionThrown if the number of rows of A is less than the bandwidth of resulting banded matrix.
Remarks
The main diagonal is extracted along with lowerBandwidth subdiagonals and upperBandwidth superdiagonals.
See Also