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 Array<T, Ix2>

Implementors§