pub trait TransposeOp<T> {
    fn transpose(&self, x: &Matrix<'_, T>) -> Matrix<'_, T>;
}

Required Methods

Implementations on Foreign Types

Implementors