36 releases (20 breaking)
new 0.21.0 | Nov 14, 2024 |
---|---|
0.19.0 | Oct 26, 2024 |
0.15.2 | Jul 12, 2024 |
#624 in Data structures
389 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