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

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

Calculate symmetric square-root matrix using eigh

Associated Types

type Output

Required methods

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

Implementations on Foreign Types

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

type Output = Array2<A>

Implementors