Click or drag to resize

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

Parameters

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