polymath 0.3.1

Make math in Rust more powerful! (New math datatypes, traits, functions, etc...)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Polymath
A library with stuff for making math in Rust way nicer, and way more flexible!

# Examples:
```rust
// Matrix

use polymath::prelude::*;

fn main() {
  let a: Matrix<f64> = Matrix::new((2, 4), 0.0);
  let b: Matrix<f64> = a + 5.0; // Supports addition. (Of many kinds.)
}
```