Struct feanor_math::algorithms::smith::DenseMatrix
source · pub struct DenseMatrix<R>{ /* private fields */ }Implementations§
source§impl<R> DenseMatrix<R>
impl<R> DenseMatrix<R>
pub fn at_mut(&mut self, i: usize, j: usize) -> &mut R::Element
pub fn identity<S>(n: usize, ring: S) -> Selfwhere
S: RingStore<Type = R>,
pub fn zero<S>(n: usize, m: usize, ring: S) -> Selfwhere
S: RingStore<Type = R>,
pub fn mul<S>(&self, other: &DenseMatrix<R>, ring: S) -> Self
pub fn clone_matrix<S>(&self, ring: S) -> Selfwhere
S: RingStore<Type = R>,
Trait Implementations§
source§impl<R> Matrix<R> for DenseMatrix<R>
impl<R> Matrix<R> for DenseMatrix<R>
Auto Trait Implementations§
impl<R: ?Sized> RefUnwindSafe for DenseMatrix<R>
impl<R: ?Sized> Send for DenseMatrix<R>
impl<R: ?Sized> Sync for DenseMatrix<R>
impl<R: ?Sized> Unpin for DenseMatrix<R>
impl<R: ?Sized> UnwindSafe for DenseMatrix<R>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more