Type Definition nalgebra::base::DMatrixSlice [−][src]
pub type DMatrixSlice<'a, T, RStride = U1, CStride = Dynamic> = Matrix<T, Dynamic, Dynamic, SliceStorage<'a, T, Dynamic, Dynamic, RStride, CStride>>;
Expand description
A column-major matrix slice dynamic numbers of rows and columns.
Because this is an alias, not all its methods are listed here. See the Matrix
type too.