Represents the possible values of an operation to be
performed on a matrix before it is multiplied.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public enum TransposeOperation
Public Enumeration TransposeOperation
public enum class TransposeOperation
| Member name | Value | Description |
---|
| None | 0 |
No operation is performed. The matrix is used 'as is.'
|
| Transpose | 1 |
The transpose of the matrix used.
|
| ConjugateTranspose | 3 |
The conjugate transpose of the matrix is used.
For real matrices, this is the same as Transpose.
|
| Conjugate | 2 |
The conjugate of the matrix is used.
For real matrices, this is the same as None.
|
This enumeration corresponds to the trans parameters
in the BLAS and LAPACK routines, and the CBLAS.TRANSPOSE enum
in the CBLAS interface definition.
Reference