Click or drag to resize

NMathFunctionsTransposeProduct(DoubleMatrix, DoubleMatrix, DoubleMatrix) 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(
	DoubleMatrix A,
	DoubleMatrix B,
	DoubleMatrix C
)

Parameters

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