  | NMathFunctionsConjTranspose(DoubleComplexMatrix) Method | 
            Returns the conjugate of the transpose of a given matrix. The matrix
            returned is a new view of the same data as the given matrix.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static DoubleComplexMatrix ConjTranspose(
	DoubleComplexMatrix A
)
Public Shared Function ConjTranspose ( 
	A As DoubleComplexMatrix
) As DoubleComplexMatrix
public:
static DoubleComplexMatrix^ ConjTranspose(
	DoubleComplexMatrix^ A
)
static member ConjTranspose : 
        A : DoubleComplexMatrix -> DoubleComplexMatrix Parameters
- A  DoubleComplexMatrix
 - A matrix.
 
Return Value
DoubleComplexMatrixA new matrix 
B with 
B[i,k] = Conj(A[k,i]).
See Also