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
15
16
17
//! Core data structures: `Matrix`, `Vec<f64>` extensions, `DataFrame`, `Polynomial`, and const-generic forward-mode AD (`Jet<N>`)
//!
//! * Matrix (dense & sparse)
//! * Vector
//! * Automatic differentiation (`Jet<N>`)
//! * Polynomial
//! * DataFrame
//! * Multinomial (not yet implemented)

//pub mod complex;
pub mod ad;
pub mod dataframe;
pub mod matrix;
pub mod multinomial;
pub mod polynomial;
pub mod sparse;
pub mod vector;