Click or drag to resize

NMathFunctionsProduct(FloatMatrix, FloatMatrix, FloatMatrix) 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(
	FloatMatrix A,
	FloatMatrix B,
	FloatMatrix C
)

Parameters

A  FloatMatrix
A matrix.
B  FloatMatrix
A matrix.
C  FloatMatrix
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