Click or drag to resize

NMathFunctionsProduct(DoubleMatrix, DoubleMatrix, DoubleMatrix) Method

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

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

Parameters

A  DoubleMatrix
A matrix.
B  DoubleMatrix
A matrix.
C  DoubleMatrix
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
MismatchedSizeException Thrown if A, B, and C are not of compatible dimensions.
See Also