Trait ndarray_linalg::cholesky::DeterminantCInto [] [src]

pub trait DeterminantCInto {
    type Output;
    fn detc_into(self) -> Self::Output;
}

Determinant of Hermitian (or real symmetric) positive definite matrix

Associated Types

Required Methods

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

Implementations on Foreign Types

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

[src]

Implementors