pub trait Inverse { type Output; // Required method fn inv(&self) -> Result<Self::Output>; }
An interface for inverting matrix refs.
Computes the inverse of the matrix.