Computes the matrix inner product of two matrices and returns the result.

Namespace: CenterSpace.NMath.Core
Assembly: NMathPremium (in NMathPremium.dll) Version: 5.3.0.0

Syntax

C#
public static DoubleComplexMatrix Product(
	DoubleComplexMatrix A,
	DoubleComplexMatrix B
)
Visual Basic
Public Shared Function Product ( _
	A As DoubleComplexMatrix, _
	B As DoubleComplexMatrix _
) As DoubleComplexMatrix
Visual C++
public:
static DoubleComplexMatrix^ Product(
	DoubleComplexMatrix^ A, 
	DoubleComplexMatrix^ B
)

Return Value

A new matrix containing the product of A and B.

Exceptions

ExceptionCondition
CenterSpace.NMath.Core..::..MismatchedSizeExceptionThrown if A and B do not have compatible sizes.

See Also