Trait ndarray_linalg::eigh::SymmetricSqrtInto [] [src]

pub trait SymmetricSqrtInto {
    type Output;
    fn ssqrt_into(self, _: UPLO) -> Result<Self::Output>;
}

Calculate symmetric square-root matrix using eigh

Associated Types

Required Methods

Implementations on Foreign Types

impl<A, S> SymmetricSqrtInto for ArrayBase<S, Ix2> where
    A: Scalar,
    S: DataMut<Elem = A> + DataOwned
[src]

[src]

Implementors