Trait Transpose

Source
pub trait Transpose {
    type Output;

    // Required method
    fn transpose(&self) -> Self::Output;
}
Expand description

the trait denotes the ability to transpose a tensor

Required Associated Types§

Required Methods§

Source

fn transpose(&self) -> Self::Output

Implementations on Foreign Types§

Source§

impl<'a, A, S, D> Transpose for &'a ArrayBase<S, D>
where A: 'a, D: Dimension, S: Data<Elem = A>,

Implementors§