Click or drag to resize

NMathFunctionsTransposeProduct(FloatMatrix, FloatMatrix, FloatMatrix) Method

Computes the matrix inner product of the transpose of a given matrix and a second matrix and places the result in a third matrix.

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

Parameters

A  FloatMatrix
A matrix.
B  FloatMatrix
A matrix.
C  FloatMatrix
A matrix in which to place the result of the transpose product.
Exceptions
ExceptionCondition
MismatchedSizeExceptionThrown if A, B and C do not all have compatible dimensions.
Remarks
This function is equivalent to calling NMathFunctions.Product( NMathFunctions.Transpose(A), B, C ).
See Also