mymatrix 1.0.0

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

mod detail;

mod error;
mod matrix;
mod vector;

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