pub fn value_ptr_mut<T, const R: usize, const C: usize>(
x: &mut Matrix<T, Const<R>, Const<C>, ArrayStorage<T, R, C>>,
) -> &mut [T]where
T: Scalar,Expand description
Converts a matrix or vector to a mutable slice arranged in column-major order.