Returns the matrix inner product of the conjugate transpose of a given matrix
and a second matrix.
Namespace: CenterSpace.NMath.CoreAssembly: NMathPremium (in NMathPremium.dll) Version: 5.3.0.0
Syntax
| C# |
|---|
public static DoubleComplexMatrix ConjTransposeProduct( DoubleComplexMatrix A, DoubleComplexMatrix B ) |
| Visual Basic |
|---|
Public Shared Function ConjTransposeProduct ( _ A As DoubleComplexMatrix, _ B As DoubleComplexMatrix _ ) As DoubleComplexMatrix |
| Visual C++ |
|---|
public: static DoubleComplexMatrix^ ConjTransposeProduct( DoubleComplexMatrix^ A, DoubleComplexMatrix^ B ) |
Parameters
- A
- Type: CenterSpace.NMath.Core..::..DoubleComplexMatrix
A matrix.
- B
- Type: CenterSpace.NMath.Core..::..DoubleComplexMatrix
A matrix.
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 ).