Click or drag to resize

NMathFunctionsTransposeProduct(DoubleComplexBandMatrix, DoubleComplexBandMatrix) Method

Computes the matrix (inner) product of the transpose of A and B. The product is a banded matrix whose lower bandwidth is the sum of the upper bandwidth of A and the lower bandwidth ofB, and whose upper bandwidth is the sum of the lower bandwidth of A and the upper bandwidth of B.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static DoubleComplexBandMatrix TransposeProduct(
	DoubleComplexBandMatrix A,
	DoubleComplexBandMatrix B
)

Parameters

A  DoubleComplexBandMatrix
A banded matrix.
B  DoubleComplexBandMatrix
A banded matrix.

Return Value

DoubleComplexBandMatrix
The matrix (inner) product of the transpose of A and B.
Exceptions
ExceptionCondition
MismatchedSizeExceptionThrown if the number of rows in A is not equal to the number of rows in B, or if the resulting product matrix has fewer rows than the product matrix bandwidth.
See Also