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