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.

Methods

impl Transpose

fn to_rblas(&self) -> Transpose

Create a rust-blas Transpose from collenchyma-blas Transpose.

Trait Implementations

Derived Implementations

impl Clone for Transpose

fn clone(&self) -> Transpose

1.0.0fn clone_from(&mut self, source: &Self)

impl Copy for Transpose

impl Debug for Transpose

fn fmt(&self, __arg_0: &mut Formatter) -> Result