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