complex_bessel_rs/
lib.rs

1//! A library to compute Bessel functions
2//!
3//! # Introduction
4//!
5//! Rust library that acts as a wrapper for the Fortran subroutines developed by D.E. Amos.
6//! The library provides functionality to compute the Bessel, Hankel and Airy functions of complex argument and real order.
7//! Negative orders are implemented via the standard formulae.
8//!
9//! # Dependencies
10//!
11//! To compile this library is necessary to install gfortran-13
12//!
13//! # Credits
14//!
15//! - Joey Dumont and Denis Gagnon, complex_bessel: Release 0.6 (jun / 2015)
16//!   [doi 10.5281/zenodo.18220](https://doi.org/10.5281/zenodo.18220)
17//!   
18
19pub mod bessel_i;
20pub mod bessel_j;
21pub mod bessel_k;
22pub mod bessel_y;
23
24pub(crate) mod bindings;
25pub(crate) mod derivative;