Type Definition nalgebra::base::DVector

source ·
pub type DVector<T> = Matrix<T, Dyn, U1, VecStorage<T, Dyn, U1>>;
Expand description

A dynamically sized column vector.

Implementations§

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§

Converts to this type from the input type.