Trait ndarray_linalg::solveh::InverseHInto[][src]

pub trait InverseHInto {
    type Output;
    fn invh_into(self) -> Result<Self::Output>;
}

An interface for inverting Hermitian (or real symmetric) matrices.

Associated Types

Loading content...

Required methods

fn invh_into(self) -> Result<Self::Output>[src]

Computes the inverse of the Hermitian (or real symmetric) matrix.

Loading content...

Implementations on Foreign Types

impl<A, S> InverseHInto for ArrayBase<S, Ix2> where
    A: Scalar + Lapack,
    S: DataMut<Elem = A>, 
[src]

type Output = Self

Loading content...

Implementors

impl<A, S> InverseHInto for BKFactorized<S> where
    A: Scalar + Lapack,
    S: DataMut<Elem = A>, 
[src]

Loading content...