peroxide 0.33.3

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
11
12
13
//! Differential equations & Numerical Analysis tools

//pub mod bdf;
//pub mod gauss_legendre;
pub mod eigen;
pub mod integral;
pub mod interp;
pub mod newton;
pub mod ode;
pub mod optimize;
pub mod root;
pub mod spline;
pub mod utils;