# 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 = Matrix::new((2, 4), 0.0); let b: Matrix = a + 5.0; // Supports addition. (Of many kinds.) } ```