distrs 0.2.3

PDF, CDF, and percent-point/quantile functions for the normal and Student’s t distributions
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![doc = include_str!("../README.md")]
#![cfg_attr(feature = "no_std", no_std)]
#![cfg_attr(feature = "nightly", feature(float_erf))]
#![cfg_attr(feature = "nightly", feature(float_gamma))]

mod normal;
mod students_t;

#[cfg(feature = "no_std")]
use libm as math;

#[cfg(not(feature = "no_std"))]
mod math;

pub use normal::Normal;
pub use students_t::StudentsT;