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.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".