Click or drag to resize

NMathFunctionsProduct(DoubleBandMatrix, DoubleBandMatrix) Method

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

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

Parameters

A  DoubleBandMatrix
A banded matrix.
B  DoubleBandMatrix
A banded matrix.

Return Value

DoubleBandMatrix
The matrix (inner) product of A and B.
Exceptions
ExceptionCondition
MismatchedSizeExceptionThrown if the number of columns 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