Enum collenchyma_blas::transpose::Transpose
[−]
[src]
pub enum Transpose { NoTrans, Trans, ConjTrans, }
Possible transpose operations that can be applied in Level 2 and Level 3 BLAS operations.
Variants
NoTrans | Take the matrix as it is. | |
Trans | Take the transpose of the matrix. | |
ConjTrans | Take the conjugate transpose of the matrix. |