13 releases (6 breaking)

new 0.7.3 May 26, 2024
0.7.2 May 25, 2024
0.6.0 May 21, 2024
0.5.1 May 21, 2024
0.1.0 Apr 29, 2024

#262 in Data structures

Download history 209/week @ 2024-04-28 153/week @ 2024-05-05 480/week @ 2024-05-12 773/week @ 2024-05-19

1,615 downloads per month

MIT license

175KB
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 matreex instead of matrix?

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 matreex instead of matrix?

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

Dependencies

~0–265KB