Expand description
A dynamically sized column-major matrix.
Because this is an alias, not all its methods are listed here. See the Matrix
type too.
Implementations§
source§impl<T> DMatrix<T>
impl<T> DMatrix<T>
sourcepub const fn from_vec_storage(storage: VecStorage<T, Dyn, Dyn>) -> Self
pub const fn from_vec_storage(storage: VecStorage<T, Dyn, 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.