Type Definition nalgebra::base::RowDVector
source · Expand description
A dynamically sized row vector.
Implementations§
source§impl<T> RowDVector<T>
impl<T> RowDVector<T>
sourcepub const fn from_vec_storage(storage: VecStorage<T, U1, Dyn>) -> Self
pub const fn from_vec_storage(storage: VecStorage<T, U1, Dyn>) -> Self
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.