Type Definition nalgebra::base::MatrixViewMut
source · pub type MatrixViewMut<'a, T, R, C, RStride = U1, CStride = R> = Matrix<T, R, C, ViewStorageMut<'a, T, R, C, RStride, CStride>>;
Expand description
A mutable matrix view.
Implementations§
source§impl<'a, T: Scalar, R: Dim, C: Dim, RStride: Dim, CStride: Dim> MatrixViewMut<'a, T, R, C, RStride, CStride>
impl<'a, T: Scalar, R: Dim, C: Dim, RStride: Dim, CStride: Dim> MatrixViewMut<'a, T, R, C, RStride, CStride>
sourcepub unsafe fn from_slice_with_strides_generic_unchecked(
data: &'a mut [T],
start: usize,
nrows: R,
ncols: C,
rstride: RStride,
cstride: CStride
) -> Self
pub unsafe fn from_slice_with_strides_generic_unchecked(
data: &'a mut [T],
start: usize,
nrows: R,
ncols: C,
rstride: RStride,
cstride: CStride
) -> Self
Creates, without bound-checking, a mutable matrix view from an array and with dimensions and strides specified by generic types instances.
Safety
This method is unsafe because the input data array is not checked to contain enough elements.
The generic types R
, C
, RStride
, CStride
can either be type-level integers or integers wrapped with Dyn()
.
sourcepub fn from_slice_with_strides_generic(
data: &'a mut [T],
nrows: R,
ncols: C,
rstride: RStride,
cstride: CStride
) -> Self
pub fn from_slice_with_strides_generic(
data: &'a mut [T],
nrows: R,
ncols: C,
rstride: RStride,
cstride: CStride
) -> Self
Creates a mutable matrix view from an array and with dimensions and strides specified by generic types instances.
Panics if the input data array dose not contain enough elements.
The generic types R
, C
, RStride
, CStride
can either be type-level integers or integers wrapped with Dyn()
.
source§impl<'a, T: Scalar, R: Dim, C: Dim> MatrixViewMut<'a, T, R, C>
impl<'a, T: Scalar, R: Dim, C: Dim> MatrixViewMut<'a, T, R, C>
sourcepub unsafe fn from_slice_generic_unchecked(
data: &'a mut [T],
start: usize,
nrows: R,
ncols: C
) -> Self
pub unsafe fn from_slice_generic_unchecked(
data: &'a mut [T],
start: usize,
nrows: R,
ncols: C
) -> Self
Creates, without bound-checking, a mutable matrix view from an array and with dimensions specified by generic types instances.
Safety
This method is unsafe because the input data array is not checked to contain enough elements.
The generic types R
and C
can either be type-level integers or integers wrapped with Dyn()
.
sourcepub fn from_slice_generic(data: &'a mut [T], nrows: R, ncols: C) -> Self
pub fn from_slice_generic(data: &'a mut [T], nrows: R, ncols: C) -> Self
Creates a mutable matrix view from an array and with dimensions and strides specified by generic types instances.
Panics if the input data array dose not contain enough elements.
The generic types R
and C
can either be type-level integers or integers wrapped with Dyn()
.
source§impl<'a, T: Scalar, R: DimName, C: DimName> MatrixViewMut<'a, T, R, C>
impl<'a, T: Scalar, R: DimName, C: DimName> MatrixViewMut<'a, T, R, C>
sourcepub fn from_slice(data: &'a mut [T]) -> Self
pub fn from_slice(data: &'a mut [T]) -> Self
Creates a new mutable matrix view from the given data array.
Panics if data
does not contain enough elements.
sourcepub unsafe fn from_slice_unchecked(data: &'a mut [T], start: usize) -> Self
pub unsafe fn from_slice_unchecked(data: &'a mut [T], start: usize) -> Self
Creates, without bound checking, a new mutable matrix view from the given data array.
source§impl<'a, T: Scalar, R: DimName, C: DimName> MatrixViewMut<'a, T, R, C, Dyn, Dyn>
impl<'a, T: Scalar, R: DimName, C: DimName> MatrixViewMut<'a, T, R, C, Dyn, Dyn>
sourcepub fn from_slice_with_strides_mut(
data: &'a mut [T],
rstride: usize,
cstride: usize
) -> Self
pub fn from_slice_with_strides_mut(
data: &'a mut [T],
rstride: usize,
cstride: usize
) -> Self
Creates a new mutable matrix view with the specified strides from the given data array.
Panics if data
does not contain enough elements.
source§impl<'a, T: Scalar, R: DimName> MatrixViewMut<'a, T, R, Dyn>
impl<'a, T: Scalar, R: DimName> MatrixViewMut<'a, T, R, Dyn>
sourcepub fn from_slice(data: &'a mut [T], ncols: usize) -> Self
pub fn from_slice(data: &'a mut [T], ncols: usize) -> Self
Creates a new mutable matrix view from the given data array.
Panics if data
does not contain enough elements.
sourcepub unsafe fn from_slice_unchecked(
data: &'a mut [T],
start: usize,
ncols: usize
) -> Self
pub unsafe fn from_slice_unchecked(
data: &'a mut [T],
start: usize,
ncols: usize
) -> Self
Creates, without bound checking, a new mutable matrix view from the given data array.
source§impl<'a, T: Scalar, R: DimName> MatrixViewMut<'a, T, R, Dyn, Dyn, Dyn>
impl<'a, T: Scalar, R: DimName> MatrixViewMut<'a, T, R, Dyn, Dyn, Dyn>
source§impl<'a, T: Scalar, C: DimName> MatrixViewMut<'a, T, Dyn, C>
impl<'a, T: Scalar, C: DimName> MatrixViewMut<'a, T, Dyn, C>
sourcepub fn from_slice(data: &'a mut [T], nrows: usize) -> Self
pub fn from_slice(data: &'a mut [T], nrows: usize) -> Self
Creates a new mutable matrix view from the given data array.
Panics if data
does not contain enough elements.
sourcepub unsafe fn from_slice_unchecked(
data: &'a mut [T],
start: usize,
nrows: usize
) -> Self
pub unsafe fn from_slice_unchecked(
data: &'a mut [T],
start: usize,
nrows: usize
) -> Self
Creates, without bound checking, a new mutable matrix view from the given data array.
source§impl<'a, T: Scalar, C: DimName> MatrixViewMut<'a, T, Dyn, C, Dyn, Dyn>
impl<'a, T: Scalar, C: DimName> MatrixViewMut<'a, T, Dyn, C, Dyn, Dyn>
source§impl<'a, T: Scalar> MatrixViewMut<'a, T, Dyn, Dyn>
impl<'a, T: Scalar> MatrixViewMut<'a, T, Dyn, Dyn>
sourcepub fn from_slice(data: &'a mut [T], nrows: usize, ncols: usize) -> Self
pub fn from_slice(data: &'a mut [T], nrows: usize, ncols: usize) -> Self
Creates a new mutable matrix view from the given data array.
Panics if data
does not contain enough elements.