mtrs

Crates.io Documentation Codecov A library for handling mathematical matrices in Rust

Quick example

```rs

[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);

} ```