Enum rustml::blas::Transpose [] [src]

pub enum Transpose {
    NoTrans,
    Trans,
    ConjTrans,
}

Enum to specify how to transform a matrix before doing an operation on it. Required for the cblas_* functions.

Variants

NoTrans

No transformation of the matrix.

Trans

Use the transpose of the matrix.

ConjTrans

Use the conjugate transpose of the matrix.