multrix 0.1.1

A simple matrix multiplication and manipulation library with multithreading support
Documentation
multrix-0.1.1 has been yanked.

Multrix

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.

Examples

Matrix multiplication

use multrix::multrix::Matrix;
fn main() {
    let a = Matrix::new_rand(100, 100);
    let b = Matrix::new_rand(100, 100);
    a.parallel_product(&b).print();
}

List of features

  • Matrix creation from files, randomly, or from vectors
  • Matrix addition
  • Matrix transposition
  • Matrix multiplication (sequential and parallel)
  • Matrix output to files or stdout

Documentation

All the functionalities are documented, and the documentation can be found here.