Trait ndarray_linalg::solveh::DeterminantHInto [] [src]

pub trait DeterminantHInto {
    type Output;
    fn deth_into(self) -> Self::Output;
}

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

Associated Types

Required Methods

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

Implementations on Foreign Types

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

[src]

Implementors