Multiple two matrices.

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

Syntax

C#
public static FloatComplexMatrix operator *(
	FloatComplexMatrix A,
	FloatComplexMatrix B
)
Visual Basic (Declaration)
Public Shared Operator * ( _
	A As FloatComplexMatrix, _
	B As FloatComplexMatrix _
) As FloatComplexMatrix
Visual C++
public:
static FloatComplexMatrix^ operator *(
	FloatComplexMatrix^ A, 
	FloatComplexMatrix^ B
)

Return Value

A matrix C where C[i,j] = A[i,j] * B[i,j].

Remarks

Operator* performs elementwise multiplication. See NMathFunctions.Product() for computing the matrix inner product.

Exceptions

ExceptionCondition
CenterSpace.NMath.Core..::.MismatchedSizeExceptionThrown if the two matrices do not have the same dimensions.

See Also