mathru 0.16.2

Fundamental algorithms for scientific computing in Rust
Documentation
1
2
3
4
5
pub trait Determinant<T> {
    /// Calculates the determinant
    ///
    fn det(&self) -> T;
}