sukker 1.1.0

Matrices in rust
Documentation
sukker-1.1.0 has been yanked.

Sukker - Matrix library written in rust

Build Status Documentation Crates.io Coverage Status Maintenance

Linear algebra in Rust! In version 1.1.0, there is now added support for several datatypes, with the tradeof being no rayon added just yet. This and more linear algebra functions to be added

Examples

use sukker::Matrix;

fn main() {
    let a = Matrix::init(2f32, (2,3));
    let b = Matrix::init(4f32, (2,3));

    let c = a.add(&b);

    // To print this beautiful matrix:
    c.print();
}

More examples can be found here

Documentation

Full API documentation can be found here.

Features

  • Blazingly fast
  • Common matrix operations exists under matrix module
  • Support for f32, f64, i32, i64 and even i8