Trait ndarray_linalg::tridiagonal::DeterminantTridiagonal[][src]

pub trait DeterminantTridiagonal<A: Scalar> {
    fn det_tridiagonal(&self) -> Result<A>;
}

An interface for calculating determinants of tridiagonal matrix refs.

Required methods

fn det_tridiagonal(&self) -> Result<A>[src]

Computes the determinant of the matrix. Unlike .det() of Determinant trait, this method doesn’t returns the natural logarithm of the determinant but the determinant itself.

Loading content...

Implementations on Foreign Types

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

Loading content...

Implementors

impl<A> DeterminantTridiagonal<A> for Tridiagonal<A> where
    A: Scalar
[src]

Loading content...