Click or drag to resize

NMathFunctionsConjTransposeProduct(DoubleComplexMatrix, DoubleComplexMatrix) Method

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

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static DoubleComplexMatrix ConjTransposeProduct(
	DoubleComplexMatrix A,
	DoubleComplexMatrix B
)

Parameters

A  DoubleComplexMatrix
A matrix.
B  DoubleComplexMatrix
A matrix.

Return Value

DoubleComplexMatrix
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