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

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

Calculate symmetric square-root matrix using eigh

Associated Types

type Output

Required methods

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

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>

Implementors