pub trait Inverse {
    type Output;

    fn inv(&self) -> Result<Self::Output>;
}
Expand description

An interface for inverting matrix refs.

Required Associated Types

Required Methods

Computes the inverse of the matrix.

Implementations on Foreign Types

Implementors