peroxide 0.20.0

Rust comprehensive scientific computation library contains linear algebra, numerical analysis, statistics and machine learning tools with farmiliar syntax
Documentation
extern crate peroxide;
use peroxide::*;

fn main() {
    let a = rand(1000, 1000);
    (&a * &a).print();
}