Trait ndarray_linalg::eigh::SymmetricSqrt

source ·
pub trait SymmetricSqrt {
    type Output;

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

Calculate symmetric square-root matrix using eigh

Required Associated Types§

Required Methods§

source

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

Implementations on Foreign Types§

source§

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

source§

type Output = ArrayBase<OwnedRepr<A>, Dim<[usize; 2]>>

source§

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

Implementors§