Type Definition nalgebra::base::DVector[][src]

type DVector<T> = Matrix<T, Dynamic, U1, VecStorage<T, Dynamic, U1>>;
Expand description

A dynamically sized column vector.

Implementations

impl<T> DVector<T>[src]

pub const fn from_vec_storage(storage: VecStorage<T, Dynamic, U1>) -> Self[src]

Creates a new heap-allocated matrix from the given VecStorage.

This method exists primarily as a workaround for the fact that from_data can not work in const fn contexts.

Trait Implementations

impl<'a, T: Scalar> From<Vec<T, Global>> for DVector<T>[src]

fn from(vec: Vec<T>) -> Self[src]

Performs the conversion.