| Crates.io | polymath |
| lib.rs | polymath |
| version | 0.3.1 |
| created_at | 2023-11-13 21:52:36.958203+00 |
| updated_at | 2023-11-15 21:12:30.219168+00 |
| description | Make math in Rust more powerful! (New math datatypes, traits, functions, etc...) |
| homepage | |
| repository | https://gitlab.com/oglo-crates/polymath |
| max_upload_size | |
| id | 1034091 |
| size | 16,569 |
A library with stuff for making math in Rust way nicer, and way more flexible!
// 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.)
}