slatec 0.1.0

Safe Rust interface to selected SLATEC numerical routines
1
2
3
4
5
6
7
8
9
10
11
//! Exponential integrals `E1` and `Ei`.
//!
//! # Status: Partial
//!
//! Enable `special-integrals` for the reviewed real scalar functions.

#[cfg(feature = "special-integrals")]
pub use super::{
    exponential_integral_e1, exponential_integral_e1_f32, exponential_integral_ei,
    exponential_integral_ei_f32,
};