Computes the matrix inner product of two matrices, placing the result in the third.

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

Syntax

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

Parameters

A
Type: CenterSpace.NMath.Core..::.DoubleComplexMatrix
A matrix.
B
Type: CenterSpace.NMath.Core..::.DoubleComplexMatrix
A matrix.
C
Type: CenterSpace.NMath.Core..::.DoubleComplexMatrix
The result of the inner product of A with B is placed in C. C must have dimensions A.Rows by B.Cols.

Exceptions

ExceptionCondition
CenterSpace.NMath.Core..::.MismatchedSizeException Thrown if A, B, and C are not of compatible dimensions.

See Also