| Crates.io | multrix |
| lib.rs | multrix |
| version | 0.1.2 |
| created_at | 2023-04-13 19:21:37.380282+00 |
| updated_at | 2023-04-13 21:06:03.834035+00 |
| description | A simple matrix multiplication and manipulation library with multithreading support |
| homepage | |
| repository | https://github.com/AndreaBissoli/multrix |
| max_upload_size | |
| id | 838634 |
| size | 12,385 |
Multrix is a simple matrix multiplication and manipulation library for rust.
It is a work in progress, with many features still to be added.
The objective is for it to be fast, easy to use, and easy to extend, with multithreading capabilities.
use multrix::multrix::Matrix;
fn main() {
let a = Matrix::new_rand(100, 100);
let b = Matrix::new_rand(100, 100);
println!("a + b = {}", a - b);
println!("a * b = {}", a * b);
}
All the functionalities are documented, and the documentation can be found here.