.NET Matrix Library
Adjoint Method
See Also  Send Feedback



Returns the conjugate transpose (adjoint) of the current matrix.

Syntax

Visual Basic (Declaration) 
Public Function Adjoint() As CMatrix
Visual Basic (Usage)Copy Code
Dim instance As CMatrix
Dim value As CMatrix
 
value = instance.Adjoint()
C# 
public CMatrix Adjoint()
C++/CLI 
public:
CMatrix^ Adjoint(); 

Return Value

A CMatrix instance that represents the conjugate transpose of the current matrix.

Remarks

Using Adjoint method is equivalent to sequentially using Conjugate and Transpose methods.

Requirements

Target Platforms: Windows 2000, Windows XP, Windows Server 2003 family, Windows Vista, Windows Server 2008 family, Windows 7

See Also

.NET Matrix Library