Trait ndarray_linalg::eigh::SymmetricSqrtInto

source ·
pub trait SymmetricSqrtInto {
    type Output;

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

Calculate symmetric square-root matrix using eigh

Required Associated Types§

Required Methods§

source

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

Implementations on Foreign Types§

source§

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

source§

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

source§

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

Implementors§