Click or drag to resize

DoubleMatrixMultiply(DoubleMatrix, DoubleMatrix) Operator

Multiple two matrices.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static DoubleMatrix operator *(
	DoubleMatrix A,
	DoubleMatrix B
)

Parameters

A  DoubleMatrix
A matrix.
B  DoubleMatrix
A matrix.

Return Value

DoubleMatrix
A matrix C where C[i,j] = A[i,j] * B[i,j].
Exceptions
ExceptionCondition
MismatchedSizeExceptionThrown if the two matrices do not have the same dimensions.
Remarks
Operator* performs elementwise multiplication. See NMathFunctions.Product() for computing the matrix inner product.
See Also