Trait ndarray_linalg::eigh::EighMut [] [src]

pub trait EighMut {
    type EigVal;
    fn eigh_mut(&mut self, _: UPLO) -> Result<(Self::EigVal, &mut Self)>;
}

Eigenvalue decomposition of mutable reference of Hermite matrix

Associated Types

Required Methods

Implementations on Foreign Types

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

[src]

Implementors