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

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

Syntax

C#
public static DoubleComplexMatrix Product(
	DoubleComplexMatrix A,
	DoubleComplexMatrix B
)
Visual Basic (Declaration)
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