Linear algebra in Rust!
Parallelized using rayon with support for many common datatypes, sukker tries to make matrix operations easier for the user, while still giving you as the user the performance you deserve.
Basic operations on sparse matrices are also supported now
Need a feature? Please let me/us know!
With added error handling and a good amount of rewriting, a major version was due to avoid any confusion.
```rust use sukker::Matrix;
fn main() {
let a = Matrix::
let c = a.matmul(&b).unwrap();
// To print this beautiful matrix:
c.print(5);
} ```
More examples can be found here
Full API documentation can be found here.