matreex

Crates.iomatreex
lib.rsmatreex
version0.21.3
sourcesrc
created_at2024-04-29 21:31:51.202788
updated_at2024-12-09 19:36:09.564811
descriptionA simple matrix implementation.
homepage
repositoryhttps://github.com/Lingxuan-Ye/matreex
max_upload_size
id1224512
size201,801
Lingxuan Ye (Lingxuan-Ye)

documentation

README

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.

Commit count: 618

cargo fmt