spfunc 0.1.3

Rust crate for numerical calculation of special functions.
Documentation
1
2
3
4
5
6
7
8
9
//! Constant values used in this crate.

/// The small number.
pub const EPSILON: f64 = std::f64::EPSILON;
/// Infinity.
pub const INFINITY: f64 = std::f64::INFINITY;

/// $$\sqrt{2\pi}$$
pub const SQRT_2_PI: f64 = 2.5066282746310005;