mathru 0.16.2

Fundamental algorithms for scientific computing in Rust
Documentation
1
2
3
4
pub trait Solve<T> {
    /// A * x = b
    fn solve(&self, rhs: &T) -> Result<T, ()>;
}