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

Download history 183/week @ 2024-07-12 1/week @ 2024-07-19 207/week @ 2024-07-26 17/week @ 2024-08-02 110/week @ 2024-08-30 18/week @ 2024-09-06 47/week @ 2024-09-13 51/week @ 2024-09-20 124/week @ 2024-09-27 101/week @ 2024-10-04 180/week @ 2024-10-11 59/week @ 2024-10-18 119/week @ 2024-10-25

489 downloads per month

MIT license

200KB
4K SLoC

matreex

Crates.io Documentation License: MIT

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