mathguru 0.2.0

An algebra system capable of mixed numeric and symbolic computation.
Documentation
1
2
3
4
5
6
7
8
9
10
// #![feature(generic_const_exprs)]
mod matrix;
mod poly;
mod quat;
mod vector;

pub use matrix::*;
pub use poly::*;
pub use quat::*;
pub use vector::*;