peroxide 0.30.15

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::*;

#[test]
fn change_shape_test() {
    let a = matrix(vec![1, 2, 3, 4], 2, 2, Row);
    assert_eq!(a.shape, Row);
    let b = a.change_shape();
    assert_eq!(b.shape, Col);
}