peroxide 0.27.1

Rust comprehensive scientific computation library contains linear algebra, numerical analysis, statistics and machine learning tools with farmiliar syntax
Documentation
extern crate peroxide;
#[allow(unused_imports)]
use peroxide::prelude::*;

#[test]
fn add_test() {
    let a = AD1::new(2f64, 1f64);
    let b = AD2::new(4f64, 4f64, 2f64);
    assert_eq!(a + b, AD2::new(6f64, 5f64, 2f64));
}