pub trait BaseMatrixMut<T>: BaseMatrix<T> {
Show 14 methods
// Required method
fn as_mut_ptr(&mut self) -> *mut T;
// Provided methods
fn as_mut_slice(&mut self) -> MatrixSliceMut<'_, T> { ... }
unsafe fn get_unchecked_mut(&mut self, index: [usize; 2]) -> &mut T { ... }
fn iter_mut<'a>(&mut self) -> SliceIterMut<'a, T>
where T: 'a { ... }
fn get_row_mut(&mut self, index: usize) -> Option<&mut [T]> { ... }
unsafe fn get_row_unchecked_mut(&mut self, index: usize) -> &mut [T] { ... }
fn swap_rows(&mut self, a: usize, b: usize) { ... }
fn swap_cols(&mut self, a: usize, b: usize) { ... }
fn iter_rows_mut(&mut self) -> RowsMut<'_, T> { ... }
fn iter_diag_mut(&mut self, k: DiagOffset) -> DiagonalMut<'_, T, Self> { ... }
fn set_to<M>(self, target: M)
where M: BaseMatrix<T>,
T: Copy { ... }
fn apply(self, f: &dyn Fn(T) -> T) -> Self
where T: Copy { ... }
fn split_at_mut(
&mut self,
mid: usize,
axis: Axes,
) -> (MatrixSliceMut<'_, T>, MatrixSliceMut<'_, T>) { ... }
fn sub_slice_mut<'a>(
&mut self,
start: [usize; 2],
rows: usize,
cols: usize,
) -> MatrixSliceMut<'a, T>
where T: 'a { ... }
}Expand description
Trait for mutable matrices.
Required Methods§
Sourcefn as_mut_ptr(&mut self) -> *mut T
fn as_mut_ptr(&mut self) -> *mut T
Top left index of the slice.
Provided Methods§
Sourcefn as_mut_slice(&mut self) -> MatrixSliceMut<'_, T>
fn as_mut_slice(&mut self) -> MatrixSliceMut<'_, T>
Returns a MatrixSliceMut over the whole matrix.
§Examples
use rulinalg::matrix::{Matrix, BaseMatrixMut};
let mut a = Matrix::new(3, 3, vec![2.0; 9]);
let b = a.as_mut_slice();Sourceunsafe fn get_unchecked_mut(&mut self, index: [usize; 2]) -> &mut T
unsafe fn get_unchecked_mut(&mut self, index: [usize; 2]) -> &mut T
Get a mutable reference to a point in the matrix without bounds checks.
Sourcefn iter_mut<'a>(&mut self) -> SliceIterMut<'a, T>where
T: 'a,
fn iter_mut<'a>(&mut self) -> SliceIterMut<'a, T>where
T: 'a,
Returns a mutable iterator over the matrix.
§Examples
use rulinalg::matrix::{Matrix, BaseMatrixMut};
let mut a = Matrix::new(3,3, (0..9).collect::<Vec<usize>>());
{
let mut slice = a.sub_slice_mut([1,1], 2, 2);
for d in slice.iter_mut() {
*d = *d + 2;
}
}
// Only the matrix slice is updated.
assert_eq!(a.into_vec(), vec![0,1,2,3,6,7,6,9,10]);Sourcefn get_row_mut(&mut self, index: usize) -> Option<&mut [T]>
fn get_row_mut(&mut self, index: usize) -> Option<&mut [T]>
Returns a mutable reference to the row of a matrix at the given index.
None if the index is out of bounds.
§Examples
use rulinalg::matrix::{Matrix, BaseMatrixMut};
let mut a = Matrix::new(3,3, (0..9).collect::<Vec<usize>>());
let mut slice = a.sub_slice_mut([1,1], 2, 2);
{
let row = slice.get_row_mut(1);
let mut expected = vec![7usize, 8];
assert_eq!(row, Some(&mut *expected));
}
assert!(slice.get_row_mut(5).is_none());Sourceunsafe fn get_row_unchecked_mut(&mut self, index: usize) -> &mut [T]
unsafe fn get_row_unchecked_mut(&mut self, index: usize) -> &mut [T]
Returns a mutable reference to the row of a matrix at the given index without doing unbounds checking
§Examples
use rulinalg::matrix::{Matrix, BaseMatrixMut};
let mut a = Matrix::new(3,3, (0..9).collect::<Vec<usize>>());
let mut slice = a.sub_slice_mut([1,1], 2, 2);
let row = unsafe { slice.get_row_unchecked_mut(1) };
let mut expected = vec![7usize, 8];
assert_eq!(row, &mut *expected);Sourcefn iter_rows_mut(&mut self) -> RowsMut<'_, T>
fn iter_rows_mut(&mut self) -> RowsMut<'_, T>
Iterate over the mutable rows of the matrix.
§Examples
use rulinalg::matrix::{Matrix, BaseMatrixMut};
let mut a = Matrix::new(3, 2, (0..6).collect::<Vec<usize>>());
for row in a.iter_rows_mut() {
for r in row {
*r = *r + 1;
}
}
// Now contains the range 1..7
println!("{}", a);Sourcefn iter_diag_mut(&mut self, k: DiagOffset) -> DiagonalMut<'_, T, Self>
fn iter_diag_mut(&mut self, k: DiagOffset) -> DiagonalMut<'_, T, Self>
Iterate over diagonal entries mutably
§Examples
use rulinalg::matrix::{Matrix, BaseMatrixMut, DiagOffset};
let mut a = matrix![0, 1, 2;
3, 4, 5;
6, 7, 8];
// Increment super diag
for d in a.iter_diag_mut(DiagOffset::Above(1)) {
*d = *d + 1;
}
// Zero the sub-diagonal (sets 3 and 7 to 0)
// Equivalent to `iter_diag(DiagOffset::Below(1))`
for sub_d in a.iter_diag_mut(DiagOffset::from(-1)) {
*sub_d = 0;
}
println!("{}", a);§Panics
If using an Above or Below offset which is
out-of-bounds this function will panic.
This function will never panic if the Main diagonal
offset is used.
Sourcefn set_to<M>(self, target: M)where
M: BaseMatrix<T>,
T: Copy,
fn set_to<M>(self, target: M)where
M: BaseMatrix<T>,
T: Copy,
Sets the underlying matrix data to the target data.
§Examples
use rulinalg::matrix::{Matrix, BaseMatrixMut};
let mut mat = Matrix::<f32>::zeros(4,4);
let one_block = Matrix::<f32>::ones(2,2);
// Get a mutable slice of the upper left 2x2 block.
let mat_block = mat.sub_slice_mut([0,0], 2, 2);
// Set the upper left 2x2 block to be ones.
mat_block.set_to(one_block);§Panics
Panics if the dimensions of self and target are not the same.
Sourcefn apply(self, f: &dyn Fn(T) -> T) -> Selfwhere
T: Copy,
fn apply(self, f: &dyn Fn(T) -> T) -> Selfwhere
T: Copy,
Applies a function to each element in the matrix.
§Examples
use rulinalg::matrix::{Matrix, BaseMatrixMut};
fn add_two(a: f64) -> f64 {
a + 2f64
}
let a = Matrix::new(2, 2, vec![0.;4]);
let b = a.apply(&add_two);
assert_eq!(*b.data(), vec![2.0; 4]);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>)
Split the matrix at the specified axis returning two MatrixSliceMuts.
§Examples
use rulinalg::matrix::{Axes, Matrix, BaseMatrixMut};
let mut a = Matrix::new(3,3, vec![2.0; 9]);
let (b,c) = a.split_at_mut(1, Axes::Col);Sourcefn 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,
Produce a MatrixSliceMut from an existing matrix.
§Examples
use rulinalg::matrix::{Matrix, MatrixSliceMut, BaseMatrixMut};
let mut a = Matrix::new(3,3, (0..9).collect::<Vec<usize>>());
let mut slice = MatrixSliceMut::from_matrix(&mut a, [1,1], 2, 2);
let new_slice = slice.sub_slice_mut([0,0], 1, 1);Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.