polymath

Crates.iopolymath
lib.rspolymath
version0.3.1
sourcesrc
created_at2023-11-13 21:52:36.958203
updated_at2023-11-15 21:12:30.219168
descriptionMake math in Rust more powerful! (New math datatypes, traits, functions, etc...)
homepage
repositoryhttps://gitlab.com/oglo-crates/polymath
max_upload_size
id1034091
size16,569
Jackson Novak (Oglo12)

documentation

README

Polymath

A library with stuff for making math in Rust way nicer, and way more flexible!

Examples:

// 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.)
}
Commit count: 10

cargo fmt