peroxide 0.24.0

Rust comprehensive scientific computation library contains linear algebra, numerical analysis, statistics and machine learning tools with farmiliar syntax
Documentation
1
2
3
4
5
6
7
8
9
10
extern crate peroxide;
use peroxide::fuga::*;

fn main() {
    let a = Matrix::read("example_data/test.csv", false, ',');
    match a {
        Ok(m) => m.print(),
        Err(err) => println!("{}", err),
    }
}