Trait linfa_linalg::cholesky::InverseCInplace
source · [−]pub trait InverseCInplace {
type Output;
fn invc_inplace(&mut self) -> Result<Self::Output>;
}
Expand description
Inverse of a symmetric positive definite matrix
Required Associated Types
Required Methods
fn invc_inplace(&mut self) -> Result<Self::Output>
fn invc_inplace(&mut self) -> Result<Self::Output>
Computes inverse of symmetric positive definite matrix.
As a side effect, self
is used to calculate an in-place Cholesky decomposition.