matrixlib/
lib.rs

1//! A really bad toy matrix library just so i can practice some rust. Don't use this. Use [Nalgebra](https://nalgebra.org/).
2pub mod error;
3pub mod matrix;
4pub mod vector;