Computes the matrix inner product of the given matrix with the transpose of the second matrix.

Namespace:  CenterSpace.NMath.Core
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
[ObsoleteAttribute("Use NMathFunctions.DoubleMatrix Product( DoubleMatrix A, DoubleMatrix B, ProductTransposeOption transOpt )")]
public static DoubleMatrix ProductTranspose(
	DoubleMatrix A,
	DoubleMatrix B
)
Visual Basic (Declaration)
<ObsoleteAttribute("Use NMathFunctions.DoubleMatrix Product( DoubleMatrix A, DoubleMatrix B, ProductTransposeOption transOpt )")> _
Public Shared Function ProductTranspose ( _
	A As DoubleMatrix, _
	B As DoubleMatrix _
) As DoubleMatrix
Visual C++
[ObsoleteAttribute(L"Use NMathFunctions.DoubleMatrix Product( DoubleMatrix A, DoubleMatrix B, ProductTransposeOption transOpt )")]
public:
static DoubleMatrix^ ProductTranspose(
	DoubleMatrix^ A, 
	DoubleMatrix^ B
)

Remarks

This function is equivalent to calling NMathFunctions.Product( A, NMathFunctions.Transpose(B) ).

Exceptions

ExceptionCondition
CenterSpace.NMath.Core..::.MismatchedSizeExceptionThrown if A, B and C do not all have compatible dimensions.

See Also