peroxide 0.43.0

Rust comprehensive scientific computation library contains linear algebra, numerical analysis, statistics and machine learning tools with familiar syntax
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Utilities: constructors, printing, plotting, and low-level helpers

pub mod api;
pub mod non_macro;

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

pub mod low_level;
pub mod print;
pub mod useful;
#[cfg(feature = "rand")]
pub mod wrapper;
pub mod writer;