mtrs 0.1.1

A implementation of matrices in Rust
Documentation

mtrs

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

Quick example

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