Trait scirust::matrix::transpose::traits::Transpose [] [src]

pub trait Transpose<T: MagmaBase>: Shape<T> {
    fn transpose(&self) -> Self;
}

Implemented by matrix types which support transpose operations.

Required Methods

fn transpose(&self) -> Self

Returns a new matrix holding the transpose

Implementors