DeterminantTridiagonal

Trait DeterminantTridiagonal 

Source
pub trait DeterminantTridiagonal<A>
where A: Scalar,
{ // Required method fn det_tridiagonal(&self) -> Result<A, LinalgError>; }
Expand description

An interface for calculating determinants of tridiagonal matrix refs.

Required Methods§

Source

fn det_tridiagonal(&self) -> Result<A, LinalgError>

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.

Implementors§

Source§

impl<A> DeterminantTridiagonal<A> for Tridiagonal<A>
where A: Scalar,

Source§

impl<A, S> DeterminantTridiagonal<A> for ArrayBase<S, Dim<[usize; 2]>>
where A: Scalar + Lapack, S: Data<Elem = A>,