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

Download history 224/week @ 2024-07-29 128/week @ 2024-09-02 55/week @ 2024-09-16 67/week @ 2024-09-23 128/week @ 2024-09-30 131/week @ 2024-10-07 172/week @ 2024-10-14 119/week @ 2024-10-21 128/week @ 2024-10-28 22/week @ 2024-11-04 112/week @ 2024-11-11

389 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