matreex 0.3.0

A simple matrix implementation.
Documentation

matreex

A simple matrix implementation.

Quick Start

use matreex::matrix;

let lhs = matrix![[0, 1, 2], [3, 4, 5]];
let rhs = matrix![[0, 1], [2, 3], [4, 5]];

assert_eq!(lhs * rhs, matrix![[10, 13], [28, 40]]);

FAQs

Why matreex instead of matrix?

Hmm ... Who knows? Could be a name conflict.

Where are the docs?

Coming soon (maybe not that soon).