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

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

Calculate symmetric square-root matrix using eigh

Associated Types

Loading content...

Required methods

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

Loading content...

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>

Loading content...

Implementors

Loading content...