pub fn transpose<T, const R: usize, const C: usize>( x: &Matrix<T, Const<R>, Const<C>, ArrayStorage<T, R, C>>, ) -> Matrix<T, Const<C>, Const<R>, ArrayStorage<T, C, R>>where T: Scalar,
The transpose of the matrix m.
m