Type Definition nalgebra::base::MatrixSliceMutMN
source · pub type MatrixSliceMutMN<'a, T, R, C, RStride = U1, CStride = R> = Matrix<T, R, C, ViewStorageMut<'a, T, R, C, RStride, CStride>>;
👎Deprecated: Use MatrixViewMut instead, which has an identical definition.
Expand description
A column-major matrix slice with R
rows and C
columns.
Because this is an alias, not all its methods are listed here. See the Matrix
type too.