peroxide 0.33.3

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

fn main() {
    let row = 1000usize;
    let col = 1000usize;

    // Create Matrix
    let m = rand(row, col);
    
    // Create another Matrix
    let n = rand(row, col);
    
    // Matmul
    let result = m * n;

    result[(row/2, col/2)].print();
}