Enum coaster_blas::transpose::Transpose
source · pub enum Transpose {
NoTrans,
Trans,
ConjTrans,
}
Expand description
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.
Implementations§
Trait Implementations§
impl Copy for Transpose
Auto Trait Implementations§
impl RefUnwindSafe for Transpose
impl Send for Transpose
impl Sync for Transpose
impl Unpin for Transpose
impl UnwindSafe for Transpose
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more