Transpose Operation Enumeration
Represents the possible values of an operation to be
performed on a matrix before it is multiplied.
Definition
Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
public enum TransposeOperation
Remarks
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. |