Transpose Operation Enumeration
            
            
            Represents the possible values of an operation to be
            performed on a matrix before it is multiplied.
            
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.5
    C#
    
 
 
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.5
public enum TransposeOperationRemarks
This enumeration corresponds to the trans parameters in the BLAS and LAPACK routines, and the CBLAS.TRANSPOSE enum in the CBLAS interface definition.
Members
| None | 0 | No operation is performed. The matrix is used 'as is.' | 
| Transpose | 1 | The transpose of the matrix used. | 
| Conjugate | 2 | The conjugate of the matrix is used. For real matrices, this is the same as None. | 
| ConjugateTranspose | 3 | The conjugate transpose of the matrix is used. For real matrices, this is the same as Transpose. |