pub trait TransposeInplace<T: Num> {
    // Required methods
    fn transepose_by_index(
        &self,
        index: &[usize]
    ) -> Matrix<ViewMem<'_, T>, DimDyn>;
    fn transpose_by_index_inplace(
        &self,
        index: &[usize]
    ) -> Matrix<OwnedMem<T>, DimDyn>;
    fn transpose_swap_index_inplace(
        &self,
        a: usize,
        b: usize
    ) -> Matrix<OwnedMem<T>, DimDyn>;
}

Required Methods§

Implementors§

source§

impl<T: Num, M: ToViewMemory<Item = T>> TransposeInplace<T> for Matrix<M, DimDyn>