Multiply two matrices.

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

Syntax

C#
public static void Multiply(
	DoubleComplexMatrix A,
	DoubleComplexMatrix B,
	DoubleComplexMatrix C
)
Visual Basic (Declaration)
Public Shared Sub Multiply ( _
	A As DoubleComplexMatrix, _
	B As DoubleComplexMatrix, _
	C As DoubleComplexMatrix _
)
Visual C++
public:
static void Multiply(
	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
A matrix whose contents are overwritten with the product C[i,j] = A[i,j] * B[i,j].

Exceptions

ExceptionCondition
CenterSpace.NMath.Core..::.MismatchedSizeExceptionThrown if A, B and C do not all have the same dimensions.

See Also