mymatrix 0.9.0

My simple matrix library that can perform fraction operations.
Documentation
1
2
3
4
5
6
7
8
9
10
#![doc = include_str!("../readme.md")]

mod detail;

mod matrix;
mod vector;

pub use matrix::Matrix;
pub use pyinrs::Fraction;
pub use vector::Vector;