solvr 0.2.0

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
15
16
//! Generic implementations of statistical algorithms.
//!
//! These implementations work with any numr Runtime backend.
//! Each backend-specific module (cpu, cuda, wgpu) delegates to these.

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::*;