35 releases (19 breaking)
new 0.20.0 | Nov 1, 2024 |
---|---|
0.18.0 | Oct 17, 2024 |
0.15.2 | Jul 12, 2024 |
#576 in Data structures
489 downloads per month
200KB
4K
SLoC
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 named matreex
?
Hmm ... Who knows? Could be a name conflict.
lib.rs
:
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 named matreex
?
Hmm ... Who knows? Could be a name conflict.
Dependencies
~0–450KB