pub trait Inverse {
type Output;
// Required method
fn inv(&self) -> Result<Self::Output, LinalgError>;
}Expand description
An interface for inverting matrix refs.
Required Associated Types§
Required Methods§
Sourcefn inv(&self) -> Result<Self::Output, LinalgError>
fn inv(&self) -> Result<Self::Output, LinalgError>
Computes the inverse of the matrix.