Sukker - Matrix library written in rust
Examples
use Matrix;
More examples can be found here
Documentation
Full API documentation can be found here.
Features
- Blazingly fast
- Common matrix operations exists under matrix module
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
Full API documentation can be found here.