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

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

Determinant of Hermitian (or real symmetric) positive definite matrix

Associated Types

type Output

Required methods

fn detc_into(self) -> Self::Output[]

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

fn ln_detc_into(self) -> Self::Output[]

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

This method is more robust than .detc_into() to very small or very large determinants since it returns the natural logarithm of the determinant rather than the determinant itself.

Implementations on Foreign Types

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

type Output = Result<<A as Scalar>::Real>

Implementors

impl<A, S> DeterminantCInto for CholeskyFactorized<S> where
    A: Scalar + Lapack,
    S: Data<Elem = A>, 
[src][]