peroxide 0.34.6

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 a = matrix(seq(1, 441, 1), 21, 21, Col);
    a.print();
}