pub trait SymmetricSqrtInto {
    type Output;

    fn ssqrt_into(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