pub trait SymmetricSqrt {
    type Output;

    fn ssqrt(&self, uplo: UPLO) -> Result<Self::Output>;
}
Expand description

Calculate symmetric square-root matrix using eigh

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors