Returns the matrix inner product of the conjugate transpose of a given matrix and a second matrix.

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

Syntax

C#
public static FloatComplexMatrix ConjTransposeProduct(
	FloatComplexMatrix A,
	FloatComplexMatrix B
)
Visual Basic
Public Shared Function ConjTransposeProduct ( _
	A As FloatComplexMatrix, _
	B As FloatComplexMatrix _
) As FloatComplexMatrix
Visual C++
public:
static FloatComplexMatrix^ ConjTransposeProduct(
	FloatComplexMatrix^ A, 
	FloatComplexMatrix^ B
)

Return Value

A new matrix containing the inner product of the conjugate transpose of A and B.

Remarks

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

See Also