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
11
12
13
//! Utility - plot, print, pickle and etc.

pub mod api;
pub mod non_macro;

#[cfg(feature = "plot")]
pub mod plot;

pub mod print;
pub mod useful;
pub mod writer;
pub mod low_level;
pub mod wrapper;