Click or drag to resize

NMathFunctionsProduct(DoubleMatrix, DoubleMatrix) Method

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

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

Parameters

A  DoubleMatrix
A matrix.
B  DoubleMatrix
A matrix.

Return Value

DoubleMatrix
A new matrix containing the product of A and B.
Exceptions
ExceptionCondition
MismatchedSizeExceptionThrown if A and B do not have compatible sizes.
See Also