Type Definition nalgebra::base::DVectorSlice

source ·
pub type DVectorSlice<'a, T, RStride = U1, CStride = Dynamic> = Matrix<T, Dynamic, U1, SliceStorage<'a, T, Dynamic, U1, RStride, CStride>>;
Expand description

A column vector slice dynamic numbers of rows and columns.

Trait Implementations§

source§

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

source§

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

Converts to this type from the input type.