solvr 0.2.0-beta.2

Advanced computing library for real-world problem solving - optimization, differential equations, interpolation, statistics, and more
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! CPU implementation of statistical algorithms.
#![allow(unused_imports)]

mod descriptive;
mod hypothesis;
mod information;
mod regression;
mod robust;

pub use descriptive::*;
pub use hypothesis::*;
pub use information::*;
pub use regression::*;
pub use robust::*;