.NET Matrix Library
TransposeMode Enumeration
See Also  Send Feedback



Indicates whether the original matrix, the transposed matrix, or the conjugate transpose of the original matrix is used in the computation.

Syntax

Visual Basic (Declaration) 
Public Enum TransposeMode 
   Inherits System.Enum
Visual Basic (Usage)Copy Code
Dim instance As TransposeMode
C# 
public enum TransposeMode : System.Enum 
C++/CLI 
public enum class TransposeMode : public System.Enum 

Members

MemberDescription
ConjugateTransposedThe conjugate transpose of the matrix is used.
NotTransposedThe original matrix is used.
TransposedThe transpose of the matrix is used.

Requirements

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

See Also

.NET Matrix Library