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§
Sourcefn det_tridiagonal(&self) -> Result<A, LinalgError>
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.