Trait ndarray_linalg::solve::Inverse
source · pub trait Inverse {
type Output;
// Required method
fn inv(&self) -> Result<Self::Output>;
}
Expand description
An interface for inverting matrix refs.
pub trait Inverse {
type Output;
// Required method
fn inv(&self) -> Result<Self::Output>;
}
An interface for inverting matrix refs.