xsf 0.5.0+0.2.0

Rust implementations and bindings for scipy.special functions.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Pure-rust implementations of some mathematical convenience functions from
//! [NumPy](https://github.com/numpy/numpy)

mod function_base;
mod nextafter;
mod npymath;

pub use function_base::sinc;
pub(crate) use nextafter::nextafter;
pub(crate) use npymath::LogAddExpArg;
pub use npymath::{logaddexp, logaddexp2};