Type Definition nalgebra::base::DVectorViewMut

source ·
pub type DVectorViewMut<'a, T, RStride = U1, CStride = Dyn> = Matrix<T, Dyn, U1, ViewStorageMut<'a, T, Dyn, U1, RStride, CStride>>;
Expand description

A column vector view dynamic numbers of rows and columns.

Because this is an alias, not all its methods are listed here. See the Matrix type too.

Trait Implementations§

source§

impl<'a, T: Scalar + Copy> From<&'a mut [T]> for DVectorViewMut<'a, T>

source§

fn from(slice: &'a mut [T]) -> Self

Converts to this type from the input type.