Struct rusty_machine::prelude::MatrixSliceMut
source · [−]pub struct MatrixSliceMut<'a, T>where
T: 'a,{ /* private fields */ }
Expand description
A mutable MatrixSliceMut
This struct provides a mutable slice into a matrix.
The struct contains the upper left point of the slice and the width and height of the slice.
Implementations
sourceimpl<'a, T> MatrixSliceMut<'a, T>
impl<'a, T> MatrixSliceMut<'a, T>
sourcepub fn from_matrix(
mat: &'a mut Matrix<T>,
start: [usize; 2],
rows: usize,
cols: usize
) -> MatrixSliceMut<'a, T>
pub fn from_matrix(
mat: &'a mut Matrix<T>,
start: [usize; 2],
rows: usize,
cols: usize
) -> MatrixSliceMut<'a, T>
Produce a MatrixSliceMut
from a mutable Matrix
Examples
use rulinalg::matrix::{Matrix, MatrixSliceMut};
let mut a = Matrix::new(3,3, (0..9).collect::<Vec<usize>>());
let slice = MatrixSliceMut::from_matrix(&mut a, [1,1], 2, 2);
sourcepub unsafe fn from_raw_parts(
ptr: *mut T,
rows: usize,
cols: usize,
row_stride: usize
) -> MatrixSliceMut<'a, T>
pub unsafe fn from_raw_parts(
ptr: *mut T,
rows: usize,
cols: usize,
row_stride: usize
) -> MatrixSliceMut<'a, T>
Creates a MatrixSliceMut
from raw parts.
Examples
use rulinalg::matrix::MatrixSliceMut;
let mut a = vec![4.0; 16];
unsafe {
// Create a mutable matrix slice with 3 rows, and 3 cols
// The row stride of 4 specifies the distance between the start of each row in the data.
let b = MatrixSliceMut::from_raw_parts(a.as_mut_ptr(), 3, 3, 4);
}
Safety
The pointer must be followed by a contiguous slice of data larger than row_stride * rows
.
If not then other operations will produce undefined behaviour.
Additionally cols
should be less than the row_stride
. It is possible to use this
function safely whilst violating this condition. So long as
max(cols, row_stride) * rows
is less than the data size.
Trait Implementations
sourceimpl<'a, 'b, T> Add<&'b Matrix<T>> for MatrixSliceMut<'a, T>where
T: Copy + Add<T, Output = T>,
impl<'a, 'b, T> Add<&'b Matrix<T>> for MatrixSliceMut<'a, T>where
T: Copy + Add<T, Output = T>,
Performs elementwise
addition
between Matrix
and MatrixSlice
.
sourceimpl<'a, 'b, T> Add<&'b MatrixSliceMut<'a, T>> for Matrix<T>where
T: Copy + Add<T, Output = T>,
impl<'a, 'b, T> Add<&'b MatrixSliceMut<'a, T>> for Matrix<T>where
T: Copy + Add<T, Output = T>,
Performs elementwise
addition
between Matrix
and MatrixSlice
.
sourceimpl<'a, 'b, T> Add<&'b T> for MatrixSliceMut<'a, T>where
T: Copy + Add<T, Output = T>,
impl<'a, 'b, T> Add<&'b T> for MatrixSliceMut<'a, T>where
T: Copy + Add<T, Output = T>,
Scalar addition with matrix slice.
sourceimpl<'a, 'b, 'c, T> Add<&'c Matrix<T>> for &'b MatrixSliceMut<'a, T>where
T: Copy + Add<T, Output = T>,
impl<'a, 'b, 'c, T> Add<&'c Matrix<T>> for &'b MatrixSliceMut<'a, T>where
T: Copy + Add<T, Output = T>,
Performs elementwise
addition
between Matrix
and MatrixSlice
.
sourceimpl<'a, 'b, 'c, T> Add<&'c MatrixSlice<'b, T>> for MatrixSliceMut<'a, T>where
T: Copy + Add<T, Output = T>,
impl<'a, 'b, 'c, T> Add<&'c MatrixSlice<'b, T>> for MatrixSliceMut<'a, T>where
T: Copy + Add<T, Output = T>,
Performs elementwise addition between the slices.
sourceimpl<'a, 'b, 'c, T> Add<&'c MatrixSliceMut<'a, T>> for &'b Matrix<T>where
T: Copy + Add<T, Output = T>,
impl<'a, 'b, 'c, T> Add<&'c MatrixSliceMut<'a, T>> for &'b Matrix<T>where
T: Copy + Add<T, Output = T>,
Performs elementwise
addition
between Matrix
and MatrixSlice
.
sourceimpl<'a, 'b, 'c, T> Add<&'c MatrixSliceMut<'b, T>> for MatrixSlice<'a, T>where
T: Copy + Add<T, Output = T>,
impl<'a, 'b, 'c, T> Add<&'c MatrixSliceMut<'b, T>> for MatrixSlice<'a, T>where
T: Copy + Add<T, Output = T>,
Performs elementwise addition between the slices.
sourceimpl<'a, 'b, 'c, T> Add<&'c MatrixSliceMut<'b, T>> for MatrixSliceMut<'a, T>where
T: Copy + Add<T, Output = T>,
impl<'a, 'b, 'c, T> Add<&'c MatrixSliceMut<'b, T>> for MatrixSliceMut<'a, T>where
T: Copy + Add<T, Output = T>,
Performs elementwise addition between the slices.
sourceimpl<'a, 'b, 'c, T> Add<&'c T> for &'b MatrixSliceMut<'a, T>where
T: Copy + Add<T, Output = T>,
impl<'a, 'b, 'c, T> Add<&'c T> for &'b MatrixSliceMut<'a, T>where
T: Copy + Add<T, Output = T>,
Scalar addition with matrix slice.
sourceimpl<'a, 'b, 'c, 'd, T> Add<&'d MatrixSlice<'b, T>> for &'c MatrixSliceMut<'a, T>where
T: Copy + Add<T, Output = T>,
impl<'a, 'b, 'c, 'd, T> Add<&'d MatrixSlice<'b, T>> for &'c MatrixSliceMut<'a, T>where
T: Copy + Add<T, Output = T>,
Performs elementwise addition between the slices.
sourceimpl<'a, 'b, 'c, 'd, T> Add<&'d MatrixSliceMut<'b, T>> for &'c MatrixSlice<'a, T>where
T: Copy + Add<T, Output = T>,
impl<'a, 'b, 'c, 'd, T> Add<&'d MatrixSliceMut<'b, T>> for &'c MatrixSlice<'a, T>where
T: Copy + Add<T, Output = T>,
Performs elementwise addition between the slices.
sourceimpl<'a, 'b, 'c, 'd, T> Add<&'d MatrixSliceMut<'b, T>> for &'c MatrixSliceMut<'a, T>where
T: Copy + Add<T, Output = T>,
impl<'a, 'b, 'c, 'd, T> Add<&'d MatrixSliceMut<'b, T>> for &'c MatrixSliceMut<'a, T>where
T: Copy + Add<T, Output = T>,
Performs elementwise addition between the slices.
sourceimpl<'a, 'b, T> Add<Matrix<T>> for &'b MatrixSliceMut<'a, T>where
T: Copy + Add<T, Output = T>,
impl<'a, 'b, T> Add<Matrix<T>> for &'b MatrixSliceMut<'a, T>where
T: Copy + Add<T, Output = T>,
Performs elementwise
addition
between Matrix
and MatrixSlice
.
sourceimpl<'a, T> Add<Matrix<T>> for MatrixSliceMut<'a, T>where
T: Copy + Add<T, Output = T>,
impl<'a, T> Add<Matrix<T>> for MatrixSliceMut<'a, T>where
T: Copy + Add<T, Output = T>,
Performs elementwise
addition
between Matrix
and MatrixSlice
.
sourceimpl<'a, 'b, 'c, T> Add<MatrixSlice<'b, T>> for &'c MatrixSliceMut<'a, T>where
T: Copy + Add<T, Output = T>,
impl<'a, 'b, 'c, T> Add<MatrixSlice<'b, T>> for &'c MatrixSliceMut<'a, T>where
T: Copy + Add<T, Output = T>,
Performs elementwise addition between the slices.
sourceimpl<'a, 'b, T> Add<MatrixSlice<'b, T>> for MatrixSliceMut<'a, T>where
T: Copy + Add<T, Output = T>,
impl<'a, 'b, T> Add<MatrixSlice<'b, T>> for MatrixSliceMut<'a, T>where
T: Copy + Add<T, Output = T>,
Performs elementwise addition between the slices.
sourceimpl<'a, 'b, T> Add<MatrixSliceMut<'a, T>> for &'b Matrix<T>where
T: Copy + Add<T, Output = T>,
impl<'a, 'b, T> Add<MatrixSliceMut<'a, T>> for &'b Matrix<T>where
T: Copy + Add<T, Output = T>,
Performs elementwise
addition
between Matrix
and MatrixSlice
.
sourceimpl<'a, T> Add<MatrixSliceMut<'a, T>> for Matrix<T>where
T: Copy + Add<T, Output = T>,
impl<'a, T> Add<MatrixSliceMut<'a, T>> for Matrix<T>where
T: Copy + Add<T, Output = T>,
Performs elementwise
addition
between Matrix
and MatrixSlice
.
sourceimpl<'a, 'b, 'c, T> Add<MatrixSliceMut<'b, T>> for &'c MatrixSlice<'a, T>where
T: Copy + Add<T, Output = T>,
impl<'a, 'b, 'c, T> Add<MatrixSliceMut<'b, T>> for &'c MatrixSlice<'a, T>where
T: Copy + Add<T, Output = T>,
Performs elementwise addition between the slices.
sourceimpl<'a, 'b, 'c, T> Add<MatrixSliceMut<'b, T>> for &'c MatrixSliceMut<'a, T>where
T: Copy + Add<T, Output = T>,
impl<'a, 'b, 'c, T> Add<MatrixSliceMut<'b, T>> for &'c MatrixSliceMut<'a, T>where
T: Copy + Add<T, Output = T>,
Performs elementwise addition between the slices.
sourceimpl<'a, 'b, T> Add<MatrixSliceMut<'b, T>> for MatrixSlice<'a, T>where
T: Copy + Add<T, Output = T>,
impl<'a, 'b, T> Add<MatrixSliceMut<'b, T>> for MatrixSlice<'a, T>where
T: Copy + Add<T, Output = T>,
Performs elementwise addition between the slices.
sourceimpl<'a, 'b, T> Add<MatrixSliceMut<'b, T>> for MatrixSliceMut<'a, T>where
T: Copy + Add<T, Output = T>,
impl<'a, 'b, T> Add<MatrixSliceMut<'b, T>> for MatrixSliceMut<'a, T>where
T: Copy + Add<T, Output = T>,
Performs elementwise addition between the slices.
sourceimpl<'a, 'b, T> Add<T> for &'b MatrixSliceMut<'a, T>where
T: Copy + Add<T, Output = T>,
impl<'a, 'b, T> Add<T> for &'b MatrixSliceMut<'a, T>where
T: Copy + Add<T, Output = T>,
Scalar addition with matrix slice.
sourceimpl<'a, T> Add<T> for MatrixSliceMut<'a, T>where
T: Copy + Add<T, Output = T>,
impl<'a, T> Add<T> for MatrixSliceMut<'a, T>where
T: Copy + Add<T, Output = T>,
Scalar addition with matrix slice.
sourceimpl<'a, 'b, T> AddAssign<&'b Matrix<T>> for MatrixSliceMut<'a, T>where
T: Copy + Add<T, Output = T>,
impl<'a, 'b, T> AddAssign<&'b Matrix<T>> for MatrixSliceMut<'a, T>where
T: Copy + Add<T, Output = T>,
Performs elementwise addition assignment between two matrices.
sourcefn add_assign(&mut self, _rhs: &Matrix<T>)
fn add_assign(&mut self, _rhs: &Matrix<T>)
+=
operation. Read moresourceimpl<'a, 'b, T> AddAssign<&'b MatrixSliceMut<'a, T>> for Matrix<T>where
T: Copy + Add<T, Output = T>,
impl<'a, 'b, T> AddAssign<&'b MatrixSliceMut<'a, T>> for Matrix<T>where
T: Copy + Add<T, Output = T>,
Performs elementwise addition assignment between two matrices.
sourcefn add_assign(&mut self, _rhs: &MatrixSliceMut<'_, T>)
fn add_assign(&mut self, _rhs: &MatrixSliceMut<'_, T>)
+=
operation. Read moresourceimpl<'a, 'b, T> AddAssign<&'b T> for MatrixSliceMut<'a, T>where
T: Copy + Add<T, Output = T>,
impl<'a, 'b, T> AddAssign<&'b T> for MatrixSliceMut<'a, T>where
T: Copy + Add<T, Output = T>,
Performs addition assignment between a mutable matrix slice and a scalar.
sourcefn add_assign(&mut self, _rhs: &T)
fn add_assign(&mut self, _rhs: &T)
+=
operation. Read moresourceimpl<'a, 'b, 'c, T> AddAssign<&'c MatrixSlice<'b, T>> for MatrixSliceMut<'a, T>where
T: Copy + Add<T, Output = T>,
impl<'a, 'b, 'c, T> AddAssign<&'c MatrixSlice<'b, T>> for MatrixSliceMut<'a, T>where
T: Copy + Add<T, Output = T>,
Performs elementwise addition assignment between two matrices.
sourcefn add_assign(&mut self, _rhs: &MatrixSlice<'_, T>)
fn add_assign(&mut self, _rhs: &MatrixSlice<'_, T>)
+=
operation. Read moresourceimpl<'a, 'b, 'c, T> AddAssign<&'c MatrixSliceMut<'b, T>> for MatrixSliceMut<'a, T>where
T: Copy + Add<T, Output = T>,
impl<'a, 'b, 'c, T> AddAssign<&'c MatrixSliceMut<'b, T>> for MatrixSliceMut<'a, T>where
T: Copy + Add<T, Output = T>,
Performs elementwise addition assignment between two matrices.
sourcefn add_assign(&mut self, _rhs: &MatrixSliceMut<'_, T>)
fn add_assign(&mut self, _rhs: &MatrixSliceMut<'_, T>)
+=
operation. Read moresourceimpl<'a, T> AddAssign<Matrix<T>> for MatrixSliceMut<'a, T>where
T: Copy + Add<T, Output = T>,
impl<'a, T> AddAssign<Matrix<T>> for MatrixSliceMut<'a, T>where
T: Copy + Add<T, Output = T>,
Performs elementwise addition assignment between two matrices.
sourcefn add_assign(&mut self, _rhs: Matrix<T>)
fn add_assign(&mut self, _rhs: Matrix<T>)
+=
operation. Read moresourceimpl<'a, 'b, T> AddAssign<MatrixSlice<'b, T>> for MatrixSliceMut<'a, T>where
T: Copy + Add<T, Output = T>,
impl<'a, 'b, T> AddAssign<MatrixSlice<'b, T>> for MatrixSliceMut<'a, T>where
T: Copy + Add<T, Output = T>,
Performs elementwise addition assignment between two matrices.
sourcefn add_assign(&mut self, _rhs: MatrixSlice<'_, T>)
fn add_assign(&mut self, _rhs: MatrixSlice<'_, T>)
+=
operation. Read moresourceimpl<'a, T> AddAssign<MatrixSliceMut<'a, T>> for Matrix<T>where
T: Copy + Add<T, Output = T>,
impl<'a, T> AddAssign<MatrixSliceMut<'a, T>> for Matrix<T>where
T: Copy + Add<T, Output = T>,
Performs elementwise addition assignment between two matrices.
sourcefn add_assign(&mut self, _rhs: MatrixSliceMut<'_, T>)
fn add_assign(&mut self, _rhs: MatrixSliceMut<'_, T>)
+=
operation. Read moresourceimpl<'a, 'b, T> AddAssign<MatrixSliceMut<'b, T>> for MatrixSliceMut<'a, T>where
T: Copy + Add<T, Output = T>,
impl<'a, 'b, T> AddAssign<MatrixSliceMut<'b, T>> for MatrixSliceMut<'a, T>where
T: Copy + Add<T, Output = T>,
Performs elementwise addition assignment between two matrices.
sourcefn add_assign(&mut self, _rhs: MatrixSliceMut<'_, T>)
fn add_assign(&mut self, _rhs: MatrixSliceMut<'_, T>)
+=
operation. Read moresourceimpl<'a, T> AddAssign<T> for MatrixSliceMut<'a, T>where
T: Copy + Add<T, Output = T>,
impl<'a, T> AddAssign<T> for MatrixSliceMut<'a, T>where
T: Copy + Add<T, Output = T>,
Performs addition assignment between a mutable matrix slice and a scalar.
sourcefn add_assign(&mut self, _rhs: T)
fn add_assign(&mut self, _rhs: T)
+=
operation. Read moresourceimpl<'a, T> BaseMatrix<T> for MatrixSliceMut<'a, T>
impl<'a, T> BaseMatrix<T> for MatrixSliceMut<'a, T>
sourcefn row_stride(&self) -> usize
fn row_stride(&self) -> usize
sourcefn as_slice(&self) -> MatrixSlice<'_, T>
fn as_slice(&self) -> MatrixSlice<'_, T>
MatrixSlice
over the whole matrix. Read moresourceunsafe fn get_unchecked(&self, index: [usize; 2]) -> &T
unsafe fn get_unchecked(&self, index: [usize; 2]) -> &T
sourcefn get(&self, index: [usize; 2]) -> Option<&T>
fn get(&self, index: [usize; 2]) -> Option<&T>
sourcefn col(&self, index: usize) -> Column<'_, T>
fn col(&self, index: usize) -> Column<'_, T>
None
if the index is out of bounds. Read moresourceunsafe fn col_unchecked(&self, index: usize) -> Column<'_, T>
unsafe fn col_unchecked(&self, index: usize) -> Column<'_, T>
sourcefn row(&self, index: usize) -> Row<'_, T>
fn row(&self, index: usize) -> Row<'_, T>
sourceunsafe fn row_unchecked(&self, index: usize) -> Row<'_, T>
unsafe fn row_unchecked(&self, index: usize) -> Row<'_, T>
sourcefn iter<'a>(&self) -> SliceIter<'a, T>where
T: 'a,
fn iter<'a>(&self) -> SliceIter<'a, T>where
T: 'a,
sourcefn diag_iter(&self, k: DiagOffset) -> Diagonal<'_, T, Self>
fn diag_iter(&self, k: DiagOffset) -> Diagonal<'_, T, Self>
sourcefn metric<'a, 'b, B, M>(&'a self, mat: &'b B, metric: M) -> Twhere
B: 'b + BaseMatrix<T>,
M: MatrixMetric<'a, 'b, T, Self, B>,
fn metric<'a, 'b, B, M>(&'a self, mat: &'b B, metric: M) -> Twhere
B: 'b + BaseMatrix<T>,
M: MatrixMetric<'a, 'b, T, Self, B>,
sourcefn split_at(
&self,
mid: usize,
axis: Axes
) -> (MatrixSlice<'_, T>, MatrixSlice<'_, T>)
fn split_at(
&self,
mid: usize,
axis: Axes
) -> (MatrixSlice<'_, T>, MatrixSlice<'_, T>)
MatrixSlice
s. Read moresourcefn sub_slice<'a>(
&self,
start: [usize; 2],
rows: usize,
cols: usize
) -> MatrixSlice<'a, T>where
T: 'a,
fn sub_slice<'a>(
&self,
start: [usize; 2],
rows: usize,
cols: usize
) -> MatrixSlice<'a, T>where
T: 'a,
MatrixSlice
from an existing matrix. Read moresourceimpl<'a, T> BaseMatrixMut<T> for MatrixSliceMut<'a, T>
impl<'a, T> BaseMatrixMut<T> for MatrixSliceMut<'a, T>
sourcefn as_mut_ptr(&mut self) -> *mut T
fn as_mut_ptr(&mut self) -> *mut T
Top left index of the slice.
sourcefn as_mut_slice(&mut self) -> MatrixSliceMut<'_, T>
fn as_mut_slice(&mut self) -> MatrixSliceMut<'_, T>
MatrixSliceMut
over the whole matrix. Read moresourceunsafe fn get_unchecked_mut(&mut self, index: [usize; 2]) -> &mut T
unsafe fn get_unchecked_mut(&mut self, index: [usize; 2]) -> &mut T
sourcefn get_mut(&mut self, index: [usize; 2]) -> Option<&mut T>
fn get_mut(&mut self, index: [usize; 2]) -> Option<&mut T>
sourcefn iter_mut<'a>(&mut self) -> SliceIterMut<'a, T>where
T: 'a,
fn iter_mut<'a>(&mut self) -> SliceIterMut<'a, T>where
T: 'a,
sourcefn col_mut(&mut self, index: usize) -> ColumnMut<'_, T>
fn col_mut(&mut self, index: usize) -> ColumnMut<'_, T>
None
if the index is out of bounds. Read moresourceunsafe fn col_unchecked_mut(&mut self, index: usize) -> ColumnMut<'_, T>
unsafe fn col_unchecked_mut(&mut self, index: usize) -> ColumnMut<'_, T>
sourcefn row_mut(&mut self, index: usize) -> RowMut<'_, T>
fn row_mut(&mut self, index: usize) -> RowMut<'_, T>
None
if the index is out of bounds. Read moresourceunsafe fn row_unchecked_mut(&mut self, index: usize) -> RowMut<'_, T>
unsafe fn row_unchecked_mut(&mut self, index: usize) -> RowMut<'_, T>
sourcefn col_iter_mut(&mut self) -> ColsMut<'_, T>
fn col_iter_mut(&mut self) -> ColsMut<'_, T>
sourcefn row_iter_mut(&mut self) -> RowsMut<'_, T>
fn row_iter_mut(&mut self) -> RowsMut<'_, T>
sourcefn diag_iter_mut(&mut self, k: DiagOffset) -> DiagonalMut<'_, T, Self>
fn diag_iter_mut(&mut self, k: DiagOffset) -> DiagonalMut<'_, T, Self>
sourcefn split_at_mut(
&mut self,
mid: usize,
axis: Axes
) -> (MatrixSliceMut<'_, T>, MatrixSliceMut<'_, T>)
fn split_at_mut(
&mut self,
mid: usize,
axis: Axes
) -> (MatrixSliceMut<'_, T>, MatrixSliceMut<'_, T>)
MatrixSliceMut
s. Read moresourcefn sub_slice_mut<'a>(
&mut self,
start: [usize; 2],
rows: usize,
cols: usize
) -> MatrixSliceMut<'a, T>where
T: 'a,
fn sub_slice_mut<'a>(
&mut self,
start: [usize; 2],
rows: usize,
cols: usize
) -> MatrixSliceMut<'a, T>where
T: 'a,
MatrixSliceMut
from an existing matrix. Read moresourceimpl<'a, T> Debug for MatrixSliceMut<'a, T>where
T: 'a + Debug,
impl<'a, T> Debug for MatrixSliceMut<'a, T>where
T: 'a + Debug,
sourceimpl<'a, 'b, T> Div<&'b T> for MatrixSliceMut<'a, T>where
T: Copy + Div<T, Output = T>,
impl<'a, 'b, T> Div<&'b T> for MatrixSliceMut<'a, T>where
T: Copy + Div<T, Output = T>,
Scalar division with matrix slice.
sourceimpl<'a, 'b, 'c, T> Div<&'c T> for &'b MatrixSliceMut<'a, T>where
T: Copy + Div<T, Output = T>,
impl<'a, 'b, 'c, T> Div<&'c T> for &'b MatrixSliceMut<'a, T>where
T: Copy + Div<T, Output = T>,
Scalar division with matrix slice.
sourceimpl<'a, 'b, T> Div<T> for &'b MatrixSliceMut<'a, T>where
T: Copy + Div<T, Output = T>,
impl<'a, 'b, T> Div<T> for &'b MatrixSliceMut<'a, T>where
T: Copy + Div<T, Output = T>,
Scalar division with matrix slice.
sourceimpl<'a, T> Div<T> for MatrixSliceMut<'a, T>where
T: Copy + Div<T, Output = T>,
impl<'a, T> Div<T> for MatrixSliceMut<'a, T>where
T: Copy + Div<T, Output = T>,
Scalar division with matrix slice.
sourceimpl<'a, 'b, T> DivAssign<&'b T> for MatrixSliceMut<'a, T>where
T: Copy + Div<T, Output = T>,
impl<'a, 'b, T> DivAssign<&'b T> for MatrixSliceMut<'a, T>where
T: Copy + Div<T, Output = T>,
Performs division assignment between a mutable matrix slice and a scalar.
sourcefn div_assign(&mut self, _rhs: &T)
fn div_assign(&mut self, _rhs: &T)
/=
operation. Read moresourceimpl<'a, T> DivAssign<T> for MatrixSliceMut<'a, T>where
T: Copy + Div<T, Output = T>,
impl<'a, T> DivAssign<T> for MatrixSliceMut<'a, T>where
T: Copy + Div<T, Output = T>,
Performs division assignment between a mutable matrix slice and a scalar.
sourcefn div_assign(&mut self, _rhs: T)
fn div_assign(&mut self, _rhs: T)
/=
operation. Read moresourceimpl<'a, T> From<MatrixSliceMut<'a, T>> for Matrix<T>where
T: Copy,
impl<'a, T> From<MatrixSliceMut<'a, T>> for Matrix<T>where
T: Copy,
sourcefn from(slice: MatrixSliceMut<'a, T>) -> Matrix<T>
fn from(slice: MatrixSliceMut<'a, T>) -> Matrix<T>
sourceimpl<'a, T> Index<[usize; 2]> for MatrixSliceMut<'a, T>
impl<'a, T> Index<[usize; 2]> for MatrixSliceMut<'a, T>
Indexes mutable matrix slice. Takes row index first then column.
sourceimpl<'a, T> IndexMut<[usize; 2]> for MatrixSliceMut<'a, T>
impl<'a, T> IndexMut<[usize; 2]> for MatrixSliceMut<'a, T>
Indexes mutable matrix slice.
Takes row index first then column.
sourceimpl<'a, T> IntoIterator for &'a MatrixSliceMut<'a, T>
impl<'a, T> IntoIterator for &'a MatrixSliceMut<'a, T>
sourceimpl<'a, T> IntoIterator for &'a mut MatrixSliceMut<'a, T>
impl<'a, T> IntoIterator for &'a mut MatrixSliceMut<'a, T>
type Item = &'a mut T
type Item = &'a mut T
type IntoIter = SliceIterMut<'a, T>
type IntoIter = SliceIterMut<'a, T>
sourcefn into_iter(self) -> <&'a mut MatrixSliceMut<'a, T> as IntoIterator>::IntoIter
fn into_iter(self) -> <&'a mut MatrixSliceMut<'a, T> as IntoIterator>::IntoIter
sourceimpl<'a, T> IntoIterator for MatrixSliceMut<'a, T>
impl<'a, T> IntoIterator for MatrixSliceMut<'a, T>
type Item = &'a mut T
type Item = &'a mut T
type IntoIter = SliceIterMut<'a, T>
type IntoIter = SliceIterMut<'a, T>
sourcefn into_iter(self) -> <MatrixSliceMut<'a, T> as IntoIterator>::IntoIter
fn into_iter(self) -> <MatrixSliceMut<'a, T> as IntoIterator>::IntoIter
sourceimpl<'a, 'b, T> Mul<&'b Matrix<T>> for MatrixSliceMut<'a, T>where
T: Copy + Zero<Output = T> + Add<T> + Mul<T, Output = T> + Any,
impl<'a, 'b, T> Mul<&'b Matrix<T>> for MatrixSliceMut<'a, T>where
T: Copy + Zero<Output = T> + Add<T> + Mul<T, Output = T> + Any,
Multiplies two matrices together.
sourceimpl<'a, 'b, T> Mul<&'b MatrixSliceMut<'a, T>> for Matrix<T>where
T: Copy + Zero<Output = T> + Add<T> + Mul<T, Output = T> + Any,
impl<'a, 'b, T> Mul<&'b MatrixSliceMut<'a, T>> for Matrix<T>where
T: Copy + Zero<Output = T> + Add<T> + Mul<T, Output = T> + Any,
Multiplies two matrices together.
sourceimpl<'a, 'b, 'm, T> Mul<&'b PermutationMatrix<T>> for &'a MatrixSliceMut<'m, T>where
T: Zero + Clone,
impl<'a, 'b, 'm, T> Mul<&'b PermutationMatrix<T>> for &'a MatrixSliceMut<'m, T>where
T: Zero + Clone,
Right-multiply a matrix by a permutation matrix.
sourceimpl<'a, 'b, 'm, T> Mul<&'b PermutationMatrix<T>> for MatrixSliceMut<'m, T>where
T: Zero + Clone,
impl<'a, 'b, 'm, T> Mul<&'b PermutationMatrix<T>> for MatrixSliceMut<'m, T>where
T: Zero + Clone,
Right-multiply a matrix by a permutation matrix.
sourceimpl<'a, 'b, T> Mul<&'b T> for MatrixSliceMut<'a, T>where
T: Copy + Mul<T, Output = T>,
impl<'a, 'b, T> Mul<&'b T> for MatrixSliceMut<'a, T>where
T: Copy + Mul<T, Output = T>,
Scalar multiplication with matrix slice.
sourceimpl<'a, 'b, 'c, T> Mul<&'c Matrix<T>> for &'b MatrixSliceMut<'a, T>where
T: Copy + Zero<Output = T> + Add<T> + Mul<T, Output = T> + Any,
impl<'a, 'b, 'c, T> Mul<&'c Matrix<T>> for &'b MatrixSliceMut<'a, T>where
T: Copy + Zero<Output = T> + Add<T> + Mul<T, Output = T> + Any,
Multiplies two matrices together.
sourceimpl<'a, 'b, 'c, T> Mul<&'c MatrixSlice<'b, T>> for MatrixSliceMut<'a, T>where
T: Copy + Zero<Output = T> + Add<T> + Mul<T, Output = T> + Any,
impl<'a, 'b, 'c, T> Mul<&'c MatrixSlice<'b, T>> for MatrixSliceMut<'a, T>where
T: Copy + Zero<Output = T> + Add<T> + Mul<T, Output = T> + Any,
Multiplies two matrices together.
sourceimpl<'a, 'b, 'c, T> Mul<&'c MatrixSliceMut<'a, T>> for &'b Matrix<T>where
T: Copy + Zero<Output = T> + Add<T> + Mul<T, Output = T> + Any,
impl<'a, 'b, 'c, T> Mul<&'c MatrixSliceMut<'a, T>> for &'b Matrix<T>where
T: Copy + Zero<Output = T> + Add<T> + Mul<T, Output = T> + Any,
Multiplies two matrices together.
sourceimpl<'a, 'b, 'c, T> Mul<&'c MatrixSliceMut<'b, T>> for MatrixSlice<'a, T>where
T: Copy + Zero<Output = T> + Add<T> + Mul<T, Output = T> + Any,
impl<'a, 'b, 'c, T> Mul<&'c MatrixSliceMut<'b, T>> for MatrixSlice<'a, T>where
T: Copy + Zero<Output = T> + Add<T> + Mul<T, Output = T> + Any,
Multiplies two matrices together.
sourceimpl<'a, 'b, 'c, T> Mul<&'c MatrixSliceMut<'b, T>> for MatrixSliceMut<'a, T>where
T: Copy + Zero<Output = T> + Add<T> + Mul<T, Output = T> + Any,
impl<'a, 'b, 'c, T> Mul<&'c MatrixSliceMut<'b, T>> for MatrixSliceMut<'a, T>where
T: Copy + Zero<Output = T> + Add<T> + Mul<T, Output = T> + Any,
Multiplies two matrices together.
sourceimpl<'a, 'b, 'c, T> Mul<&'c T> for &'b MatrixSliceMut<'a, T>where
T: Copy + Mul<T, Output = T>,
impl<'a, 'b, 'c, T> Mul<&'c T> for &'b MatrixSliceMut<'a, T>where
T: Copy + Mul<T, Output = T>,
Scalar multiplication with matrix slice.
sourceimpl<'a, 'b, 'c, 'd, T> Mul<&'d MatrixSlice<'b, T>> for &'c MatrixSliceMut<'a, T>where
T: Copy + Zero<Output = T> + Add<T> + Mul<T, Output = T> + Any,
impl<'a, 'b, 'c, 'd, T> Mul<&'d MatrixSlice<'b, T>> for &'c MatrixSliceMut<'a, T>where
T: Copy + Zero<Output = T> + Add<T> + Mul<T, Output = T> + Any,
Multiplies two matrices together.
sourceimpl<'a, 'b, 'c, 'd, T> Mul<&'d MatrixSliceMut<'b, T>> for &'c MatrixSlice<'a, T>where
T: Copy + Zero<Output = T> + Add<T> + Mul<T, Output = T> + Any,
impl<'a, 'b, 'c, 'd, T> Mul<&'d MatrixSliceMut<'b, T>> for &'c MatrixSlice<'a, T>where
T: Copy + Zero<Output = T> + Add<T> + Mul<T, Output = T> + Any,
Multiplies two matrices together.
sourceimpl<'a, 'b, 'c, 'd, T> Mul<&'d MatrixSliceMut<'b, T>> for &'c MatrixSliceMut<'a, T>where
T: Copy + Zero<Output = T> + Add<T> + Mul<T, Output = T> + Any,
impl<'a, 'b, 'c, 'd, T> Mul<&'d MatrixSliceMut<'b, T>> for &'c MatrixSliceMut<'a, T>where
T: Copy + Zero<Output = T> + Add<T> + Mul<T, Output = T> + Any,
Multiplies two matrices together.
sourceimpl<'a, 'b, T> Mul<Matrix<T>> for &'b MatrixSliceMut<'a, T>where
T: Copy + Zero<Output = T> + Add<T> + Mul<T, Output = T> + Any,
impl<'a, 'b, T> Mul<Matrix<T>> for &'b MatrixSliceMut<'a, T>where
T: Copy + Zero<Output = T> + Add<T> + Mul<T, Output = T> + Any,
Multiplies two matrices together.
sourceimpl<'a, T> Mul<Matrix<T>> for MatrixSliceMut<'a, T>where
T: Copy + Zero<Output = T> + Add<T> + Mul<T, Output = T> + Any,
impl<'a, T> Mul<Matrix<T>> for MatrixSliceMut<'a, T>where
T: Copy + Zero<Output = T> + Add<T> + Mul<T, Output = T> + Any,
Multiplies two matrices together.
sourceimpl<'a, 'b, 'c, T> Mul<MatrixSlice<'b, T>> for &'c MatrixSliceMut<'a, T>where
T: Copy + Zero<Output = T> + Add<T> + Mul<T, Output = T> + Any,
impl<'a, 'b, 'c, T> Mul<MatrixSlice<'b, T>> for &'c MatrixSliceMut<'a, T>where
T: Copy + Zero<Output = T> + Add<T> + Mul<T, Output = T> + Any,
Multiplies two matrices together.
sourceimpl<'a, 'b, T> Mul<MatrixSlice<'b, T>> for MatrixSliceMut<'a, T>where
T: Copy + Zero<Output = T> + Add<T> + Mul<T, Output = T> + Any,
impl<'a, 'b, T> Mul<MatrixSlice<'b, T>> for MatrixSliceMut<'a, T>where
T: Copy + Zero<Output = T> + Add<T> + Mul<T, Output = T> + Any,
Multiplies two matrices together.
sourceimpl<'a, 'b, T> Mul<MatrixSliceMut<'a, T>> for &'b Matrix<T>where
T: Copy + Zero<Output = T> + Add<T> + Mul<T, Output = T> + Any,
impl<'a, 'b, T> Mul<MatrixSliceMut<'a, T>> for &'b Matrix<T>where
T: Copy + Zero<Output = T> + Add<T> + Mul<T, Output = T> + Any,
Multiplies two matrices together.
sourceimpl<'a, T> Mul<MatrixSliceMut<'a, T>> for Matrix<T>where
T: Copy + Zero<Output = T> + Add<T> + Mul<T, Output = T> + Any,
impl<'a, T> Mul<MatrixSliceMut<'a, T>> for Matrix<T>where
T: Copy + Zero<Output = T> + Add<T> + Mul<T, Output = T> + Any,
Multiplies two matrices together.
sourceimpl<'a, 'b, 'c, T> Mul<MatrixSliceMut<'b, T>> for &'c MatrixSlice<'a, T>where
T: Copy + Zero<Output = T> + Add<T> + Mul<T, Output = T> + Any,
impl<'a, 'b, 'c, T> Mul<MatrixSliceMut<'b, T>> for &'c MatrixSlice<'a, T>where
T: Copy + Zero<Output = T> + Add<T> + Mul<T, Output = T> + Any,
Multiplies two matrices together.
sourceimpl<'a, 'b, 'c, T> Mul<MatrixSliceMut<'b, T>> for &'c MatrixSliceMut<'a, T>where
T: Copy + Zero<Output = T> + Add<T> + Mul<T, Output = T> + Any,
impl<'a, 'b, 'c, T> Mul<MatrixSliceMut<'b, T>> for &'c MatrixSliceMut<'a, T>where
T: Copy + Zero<Output = T> + Add<T> + Mul<T, Output = T> + Any,
Multiplies two matrices together.
sourceimpl<'a, 'b, T> Mul<MatrixSliceMut<'b, T>> for MatrixSlice<'a, T>where
T: Copy + Zero<Output = T> + Add<T> + Mul<T, Output = T> + Any,
impl<'a, 'b, T> Mul<MatrixSliceMut<'b, T>> for MatrixSlice<'a, T>where
T: Copy + Zero<Output = T> + Add<T> + Mul<T, Output = T> + Any,
Multiplies two matrices together.
sourceimpl<'a, 'b, T> Mul<MatrixSliceMut<'b, T>> for MatrixSliceMut<'a, T>where
T: Copy + Zero<Output = T> + Add<T> + Mul<T, Output = T> + Any,
impl<'a, 'b, T> Mul<MatrixSliceMut<'b, T>> for MatrixSliceMut<'a, T>where
T: Copy + Zero<Output = T> + Add<T> + Mul<T, Output = T> + Any,
Multiplies two matrices together.
sourceimpl<'a, 'm, T> Mul<PermutationMatrix<T>> for &'a MatrixSliceMut<'m, T>where
T: Zero + Clone,
impl<'a, 'm, T> Mul<PermutationMatrix<T>> for &'a MatrixSliceMut<'m, T>where
T: Zero + Clone,
Right-multiply a matrix by a permutation matrix.
sourceimpl<'a, 'm, T> Mul<PermutationMatrix<T>> for MatrixSliceMut<'m, T>where
T: Zero + Clone,
impl<'a, 'm, T> Mul<PermutationMatrix<T>> for MatrixSliceMut<'m, T>where
T: Zero + Clone,
Right-multiply a matrix by a permutation matrix.
sourceimpl<'a, 'b, T> Mul<T> for &'b MatrixSliceMut<'a, T>where
T: Copy + Mul<T, Output = T>,
impl<'a, 'b, T> Mul<T> for &'b MatrixSliceMut<'a, T>where
T: Copy + Mul<T, Output = T>,
Scalar multiplication with matrix slice.
sourceimpl<'a, T> Mul<T> for MatrixSliceMut<'a, T>where
T: Copy + Mul<T, Output = T>,
impl<'a, T> Mul<T> for MatrixSliceMut<'a, T>where
T: Copy + Mul<T, Output = T>,
Scalar multiplication with matrix slice.
sourceimpl<'a, 'b, T> MulAssign<&'b T> for MatrixSliceMut<'a, T>where
T: Copy + Mul<T, Output = T>,
impl<'a, 'b, T> MulAssign<&'b T> for MatrixSliceMut<'a, T>where
T: Copy + Mul<T, Output = T>,
Performs multiplication assignment between a mutable matrix slice and a scalar.
sourcefn mul_assign(&mut self, _rhs: &T)
fn mul_assign(&mut self, _rhs: &T)
*=
operation. Read moresourceimpl<'a, T> MulAssign<T> for MatrixSliceMut<'a, T>where
T: Copy + Mul<T, Output = T>,
impl<'a, T> MulAssign<T> for MatrixSliceMut<'a, T>where
T: Copy + Mul<T, Output = T>,
Performs multiplication assignment between a mutable matrix slice and a scalar.
sourcefn mul_assign(&mut self, _rhs: T)
fn mul_assign(&mut self, _rhs: T)
*=
operation. Read moresourceimpl<'a, 'b, T> Neg for &'b MatrixSliceMut<'a, T>where
T: Neg<Output = T> + Copy,
impl<'a, 'b, T> Neg for &'b MatrixSliceMut<'a, T>where
T: Neg<Output = T> + Copy,
Gets negative of matrix slice.
sourceimpl<'a, T> Neg for MatrixSliceMut<'a, T>where
T: Neg<Output = T> + Copy,
impl<'a, T> Neg for MatrixSliceMut<'a, T>where
T: Neg<Output = T> + Copy,
Gets negative of matrix slice.
sourceimpl<'a, 'b, T> Sub<&'b Matrix<T>> for MatrixSliceMut<'a, T>where
T: Copy + Sub<T, Output = T>,
impl<'a, 'b, T> Sub<&'b Matrix<T>> for MatrixSliceMut<'a, T>where
T: Copy + Sub<T, Output = T>,
Performs elementwise
subtraction
between Matrix
and MatrixSlice
.
sourceimpl<'a, 'b, T> Sub<&'b MatrixSliceMut<'a, T>> for Matrix<T>where
T: Copy + Sub<T, Output = T>,
impl<'a, 'b, T> Sub<&'b MatrixSliceMut<'a, T>> for Matrix<T>where
T: Copy + Sub<T, Output = T>,
Performs elementwise
subtraction
between Matrix
and MatrixSlice
.
sourceimpl<'a, 'b, T> Sub<&'b T> for MatrixSliceMut<'a, T>where
T: Copy + Sub<T, Output = T>,
impl<'a, 'b, T> Sub<&'b T> for MatrixSliceMut<'a, T>where
T: Copy + Sub<T, Output = T>,
Scalar subtraction with matrix slice.
sourceimpl<'a, 'b, 'c, T> Sub<&'c Matrix<T>> for &'b MatrixSliceMut<'a, T>where
T: Copy + Sub<T, Output = T>,
impl<'a, 'b, 'c, T> Sub<&'c Matrix<T>> for &'b MatrixSliceMut<'a, T>where
T: Copy + Sub<T, Output = T>,
Performs elementwise
subtraction
between Matrix
and MatrixSlice
.
sourceimpl<'a, 'b, 'c, T> Sub<&'c MatrixSlice<'b, T>> for MatrixSliceMut<'a, T>where
T: Copy + Sub<T, Output = T>,
impl<'a, 'b, 'c, T> Sub<&'c MatrixSlice<'b, T>> for MatrixSliceMut<'a, T>where
T: Copy + Sub<T, Output = T>,
Performs elementwise subtraction between the slices.
sourceimpl<'a, 'b, 'c, T> Sub<&'c MatrixSliceMut<'a, T>> for &'b Matrix<T>where
T: Copy + Sub<T, Output = T>,
impl<'a, 'b, 'c, T> Sub<&'c MatrixSliceMut<'a, T>> for &'b Matrix<T>where
T: Copy + Sub<T, Output = T>,
Performs elementwise
subtraction
between Matrix
and MatrixSlice
.
sourceimpl<'a, 'b, 'c, T> Sub<&'c MatrixSliceMut<'b, T>> for MatrixSlice<'a, T>where
T: Copy + Sub<T, Output = T>,
impl<'a, 'b, 'c, T> Sub<&'c MatrixSliceMut<'b, T>> for MatrixSlice<'a, T>where
T: Copy + Sub<T, Output = T>,
Performs elementwise subtraction between the slices.
sourceimpl<'a, 'b, 'c, T> Sub<&'c MatrixSliceMut<'b, T>> for MatrixSliceMut<'a, T>where
T: Copy + Sub<T, Output = T>,
impl<'a, 'b, 'c, T> Sub<&'c MatrixSliceMut<'b, T>> for MatrixSliceMut<'a, T>where
T: Copy + Sub<T, Output = T>,
Performs elementwise subtraction between the slices.
sourceimpl<'a, 'b, 'c, T> Sub<&'c T> for &'b MatrixSliceMut<'a, T>where
T: Copy + Sub<T, Output = T>,
impl<'a, 'b, 'c, T> Sub<&'c T> for &'b MatrixSliceMut<'a, T>where
T: Copy + Sub<T, Output = T>,
Scalar subtraction with matrix slice.
sourceimpl<'a, 'b, 'c, 'd, T> Sub<&'d MatrixSlice<'b, T>> for &'c MatrixSliceMut<'a, T>where
T: Copy + Sub<T, Output = T>,
impl<'a, 'b, 'c, 'd, T> Sub<&'d MatrixSlice<'b, T>> for &'c MatrixSliceMut<'a, T>where
T: Copy + Sub<T, Output = T>,
Performs elementwise subtraction between the slices.
sourceimpl<'a, 'b, 'c, 'd, T> Sub<&'d MatrixSliceMut<'b, T>> for &'c MatrixSlice<'a, T>where
T: Copy + Sub<T, Output = T>,
impl<'a, 'b, 'c, 'd, T> Sub<&'d MatrixSliceMut<'b, T>> for &'c MatrixSlice<'a, T>where
T: Copy + Sub<T, Output = T>,
Performs elementwise subtraction between the slices.
sourceimpl<'a, 'b, 'c, 'd, T> Sub<&'d MatrixSliceMut<'b, T>> for &'c MatrixSliceMut<'a, T>where
T: Copy + Sub<T, Output = T>,
impl<'a, 'b, 'c, 'd, T> Sub<&'d MatrixSliceMut<'b, T>> for &'c MatrixSliceMut<'a, T>where
T: Copy + Sub<T, Output = T>,
Performs elementwise subtraction between the slices.
sourceimpl<'a, 'b, T> Sub<Matrix<T>> for &'b MatrixSliceMut<'a, T>where
T: Copy + Sub<T, Output = T>,
impl<'a, 'b, T> Sub<Matrix<T>> for &'b MatrixSliceMut<'a, T>where
T: Copy + Sub<T, Output = T>,
Performs elementwise
subtraction
between Matrix
and MatrixSlice
.
sourceimpl<'a, T> Sub<Matrix<T>> for MatrixSliceMut<'a, T>where
T: Copy + Sub<T, Output = T>,
impl<'a, T> Sub<Matrix<T>> for MatrixSliceMut<'a, T>where
T: Copy + Sub<T, Output = T>,
Performs elementwise
subtraction
between Matrix
and MatrixSlice
.
sourceimpl<'a, 'b, 'c, T> Sub<MatrixSlice<'b, T>> for &'c MatrixSliceMut<'a, T>where
T: Copy + Sub<T, Output = T>,
impl<'a, 'b, 'c, T> Sub<MatrixSlice<'b, T>> for &'c MatrixSliceMut<'a, T>where
T: Copy + Sub<T, Output = T>,
Performs elementwise subtraction between the slices.
sourceimpl<'a, 'b, T> Sub<MatrixSlice<'b, T>> for MatrixSliceMut<'a, T>where
T: Copy + Sub<T, Output = T>,
impl<'a, 'b, T> Sub<MatrixSlice<'b, T>> for MatrixSliceMut<'a, T>where
T: Copy + Sub<T, Output = T>,
Performs elementwise subtraction between the slices.
sourceimpl<'a, 'b, T> Sub<MatrixSliceMut<'a, T>> for &'b Matrix<T>where
T: Copy + Sub<T, Output = T>,
impl<'a, 'b, T> Sub<MatrixSliceMut<'a, T>> for &'b Matrix<T>where
T: Copy + Sub<T, Output = T>,
Performs elementwise
subtraction
between Matrix
and MatrixSlice
.
sourceimpl<'a, T> Sub<MatrixSliceMut<'a, T>> for Matrix<T>where
T: Copy + Sub<T, Output = T>,
impl<'a, T> Sub<MatrixSliceMut<'a, T>> for Matrix<T>where
T: Copy + Sub<T, Output = T>,
Performs elementwise
subtraction
between Matrix
and MatrixSlice
.
sourceimpl<'a, 'b, 'c, T> Sub<MatrixSliceMut<'b, T>> for &'c MatrixSlice<'a, T>where
T: Copy + Sub<T, Output = T>,
impl<'a, 'b, 'c, T> Sub<MatrixSliceMut<'b, T>> for &'c MatrixSlice<'a, T>where
T: Copy + Sub<T, Output = T>,
Performs elementwise subtraction between the slices.
sourceimpl<'a, 'b, 'c, T> Sub<MatrixSliceMut<'b, T>> for &'c MatrixSliceMut<'a, T>where
T: Copy + Sub<T, Output = T>,
impl<'a, 'b, 'c, T> Sub<MatrixSliceMut<'b, T>> for &'c MatrixSliceMut<'a, T>where
T: Copy + Sub<T, Output = T>,
Performs elementwise subtraction between the slices.
sourceimpl<'a, 'b, T> Sub<MatrixSliceMut<'b, T>> for MatrixSlice<'a, T>where
T: Copy + Sub<T, Output = T>,
impl<'a, 'b, T> Sub<MatrixSliceMut<'b, T>> for MatrixSlice<'a, T>where
T: Copy + Sub<T, Output = T>,
Performs elementwise subtraction between the slices.
sourceimpl<'a, 'b, T> Sub<MatrixSliceMut<'b, T>> for MatrixSliceMut<'a, T>where
T: Copy + Sub<T, Output = T>,
impl<'a, 'b, T> Sub<MatrixSliceMut<'b, T>> for MatrixSliceMut<'a, T>where
T: Copy + Sub<T, Output = T>,
Performs elementwise subtraction between the slices.
sourceimpl<'a, 'b, T> Sub<T> for &'b MatrixSliceMut<'a, T>where
T: Copy + Sub<T, Output = T>,
impl<'a, 'b, T> Sub<T> for &'b MatrixSliceMut<'a, T>where
T: Copy + Sub<T, Output = T>,
Scalar subtraction with matrix slice.
sourceimpl<'a, T> Sub<T> for MatrixSliceMut<'a, T>where
T: Copy + Sub<T, Output = T>,
impl<'a, T> Sub<T> for MatrixSliceMut<'a, T>where
T: Copy + Sub<T, Output = T>,
Scalar subtraction with matrix slice.
sourceimpl<'a, 'b, T> SubAssign<&'b Matrix<T>> for MatrixSliceMut<'a, T>where
T: Copy + Sub<T, Output = T>,
impl<'a, 'b, T> SubAssign<&'b Matrix<T>> for MatrixSliceMut<'a, T>where
T: Copy + Sub<T, Output = T>,
Performs elementwise subtraction assignment between two matrices.
sourcefn sub_assign(&mut self, _rhs: &Matrix<T>)
fn sub_assign(&mut self, _rhs: &Matrix<T>)
-=
operation. Read moresourceimpl<'a, 'b, T> SubAssign<&'b MatrixSliceMut<'a, T>> for Matrix<T>where
T: Copy + Sub<T, Output = T>,
impl<'a, 'b, T> SubAssign<&'b MatrixSliceMut<'a, T>> for Matrix<T>where
T: Copy + Sub<T, Output = T>,
Performs elementwise subtraction assignment between two matrices.
sourcefn sub_assign(&mut self, _rhs: &MatrixSliceMut<'_, T>)
fn sub_assign(&mut self, _rhs: &MatrixSliceMut<'_, T>)
-=
operation. Read moresourceimpl<'a, 'b, T> SubAssign<&'b T> for MatrixSliceMut<'a, T>where
T: Copy + Sub<T, Output = T>,
impl<'a, 'b, T> SubAssign<&'b T> for MatrixSliceMut<'a, T>where
T: Copy + Sub<T, Output = T>,
Performs subtraction assignment between a mutable matrix slice and a scalar.
sourcefn sub_assign(&mut self, _rhs: &T)
fn sub_assign(&mut self, _rhs: &T)
-=
operation. Read moresourceimpl<'a, 'b, 'c, T> SubAssign<&'c MatrixSlice<'b, T>> for MatrixSliceMut<'a, T>where
T: Copy + Sub<T, Output = T>,
impl<'a, 'b, 'c, T> SubAssign<&'c MatrixSlice<'b, T>> for MatrixSliceMut<'a, T>where
T: Copy + Sub<T, Output = T>,
Performs elementwise subtraction assignment between two matrices.
sourcefn sub_assign(&mut self, _rhs: &MatrixSlice<'_, T>)
fn sub_assign(&mut self, _rhs: &MatrixSlice<'_, T>)
-=
operation. Read moresourceimpl<'a, 'b, 'c, T> SubAssign<&'c MatrixSliceMut<'b, T>> for MatrixSliceMut<'a, T>where
T: Copy + Sub<T, Output = T>,
impl<'a, 'b, 'c, T> SubAssign<&'c MatrixSliceMut<'b, T>> for MatrixSliceMut<'a, T>where
T: Copy + Sub<T, Output = T>,
Performs elementwise subtraction assignment between two matrices.
sourcefn sub_assign(&mut self, _rhs: &MatrixSliceMut<'_, T>)
fn sub_assign(&mut self, _rhs: &MatrixSliceMut<'_, T>)
-=
operation. Read moresourceimpl<'a, T> SubAssign<Matrix<T>> for MatrixSliceMut<'a, T>where
T: Copy + Sub<T, Output = T>,
impl<'a, T> SubAssign<Matrix<T>> for MatrixSliceMut<'a, T>where
T: Copy + Sub<T, Output = T>,
Performs elementwise subtraction assignment between two matrices.
sourcefn sub_assign(&mut self, _rhs: Matrix<T>)
fn sub_assign(&mut self, _rhs: Matrix<T>)
-=
operation. Read moresourceimpl<'a, 'b, T> SubAssign<MatrixSlice<'b, T>> for MatrixSliceMut<'a, T>where
T: Copy + Sub<T, Output = T>,
impl<'a, 'b, T> SubAssign<MatrixSlice<'b, T>> for MatrixSliceMut<'a, T>where
T: Copy + Sub<T, Output = T>,
Performs elementwise subtraction assignment between two matrices.
sourcefn sub_assign(&mut self, _rhs: MatrixSlice<'_, T>)
fn sub_assign(&mut self, _rhs: MatrixSlice<'_, T>)
-=
operation. Read moresourceimpl<'a, T> SubAssign<MatrixSliceMut<'a, T>> for Matrix<T>where
T: Copy + Sub<T, Output = T>,
impl<'a, T> SubAssign<MatrixSliceMut<'a, T>> for Matrix<T>where
T: Copy + Sub<T, Output = T>,
Performs elementwise subtraction assignment between two matrices.
sourcefn sub_assign(&mut self, _rhs: MatrixSliceMut<'_, T>)
fn sub_assign(&mut self, _rhs: MatrixSliceMut<'_, T>)
-=
operation. Read moresourceimpl<'a, 'b, T> SubAssign<MatrixSliceMut<'b, T>> for MatrixSliceMut<'a, T>where
T: Copy + Sub<T, Output = T>,
impl<'a, 'b, T> SubAssign<MatrixSliceMut<'b, T>> for MatrixSliceMut<'a, T>where
T: Copy + Sub<T, Output = T>,
Performs elementwise subtraction assignment between two matrices.
sourcefn sub_assign(&mut self, _rhs: MatrixSliceMut<'_, T>)
fn sub_assign(&mut self, _rhs: MatrixSliceMut<'_, T>)
-=
operation. Read moresourceimpl<'a, T> SubAssign<T> for MatrixSliceMut<'a, T>where
T: Copy + Sub<T, Output = T>,
impl<'a, T> SubAssign<T> for MatrixSliceMut<'a, T>where
T: Copy + Sub<T, Output = T>,
Performs subtraction assignment between a mutable matrix slice and a scalar.
sourcefn sub_assign(&mut self, _rhs: T)
fn sub_assign(&mut self, _rhs: T)
-=
operation. Read more