Click or drag to resize

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

Parameters

A  FloatMatrix
A matrix.
B  FloatMatrix
A matrix.

Return Value

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