# mtrs
[](https://crates.io/crates/mtrs)
[](https://docs.rs/mtrs/)
[](https://codecov.io/gh/ZippyMagician/mtrs)
[](https://travis-ci.org/ZippyMagician/mtrs)<br>
A library for handling mathematical matrices in Rust
## Quick example
```rust
#[macro_use]
extern crate mtrs;
use mtrs::Matrix;
fn main() {
let mat1 = Matrix::identity(2);
let mat2 = matrix![(2, 2); 1, 2; 3, 4];
assert_eq!(mat1 * mat2, mat2);
println!("{}", mat2);
}
```