Trait ndarray_linalg::eigh::SymmetricSqrt[][src]

pub trait SymmetricSqrt {
    type Output;
    fn ssqrt(&self, uplo: UPLO) -> Result<Self::Output>;
}

Calculate symmetric square-root matrix using eigh

Associated Types

Loading content...

Required methods

fn ssqrt(&self, uplo: UPLO) -> Result<Self::Output>[src]

Loading content...

Implementations on Foreign Types

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

type Output = Array2<A>

Loading content...

Implementors

Loading content...