Trait ndarray_linalg::solveh::DeterminantH [] [src]

pub trait DeterminantH {
    type Output;
    fn deth(&self) -> Self::Output;
}

An interface for calculating determinants of Hermitian (or real symmetric) matrix refs.

Associated Types

Required Methods

Computes the determinant of the Hermitian (or real symmetric) matrix.

Implementations on Foreign Types

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

[src]

Implementors