Inverse

Trait Inverse 

Source
pub trait Inverse {
    type Output;

    // Required method
    fn inverse(&self) -> Self::Output;
}
Expand description

this trait enables the inversion of a matrix

Required Associated Types§

Required Methods§

Source

fn inverse(&self) -> Self::Output

Implementations on Foreign Types§

Source§

impl<T> Inverse for ArrayBase<OwnedRepr<T>, Dim<[usize; 2]>>

Implementors§