Crates.io | matreex |
lib.rs | matreex |
version | 0.21.3 |
source | src |
created_at | 2024-04-29 21:31:51.202788 |
updated_at | 2024-12-09 19:36:09.564811 |
description | A simple matrix implementation. |
homepage | |
repository | https://github.com/Lingxuan-Ye/matreex |
max_upload_size | |
id | 1224512 |
size | 201,801 |
A simple matrix implementation.
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]]);
matreex
?Hmm ... Who knows? Could be a name conflict.