pub trait DeterminantTridiagonal<A: Scalar> {
// Required method
fn det_tridiagonal(&self) -> Result<A>;
}
Expand description
An interface for calculating determinants of tridiagonal matrix refs.
Required Methods§
sourcefn det_tridiagonal(&self) -> Result<A>
fn det_tridiagonal(&self) -> Result<A>
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.