mathhook_core/functions/
special.rs

1//! Special mathematical functions
2//!
3//! Comprehensive implementation of special functions including:
4//! - Gamma function family (gamma, beta, polygamma)
5//! - Bessel functions (J, Y)
6//! - Riemann zeta function
7//! - Error functions (erf, erfc, erfi)
8//! - Hypergeometric functions (1F1, 2F1)
9//! - Elliptic functions (Jacobi sn, cn, dn)
10
11pub mod bessel;
12pub mod beta;
13pub mod digamma;
14pub mod error_functions;
15pub mod factorial;
16pub mod gamma;
17pub mod intelligence;
18pub mod polygamma;
19pub mod zeta;
20
21pub use bessel::{bessel_j, bessel_y};
22pub use beta::{beta, beta_numerical};
23pub use digamma::{digamma, digamma_numerical};
24pub use error_functions::{erf, erfc};
25pub use factorial::factorial;
26pub use gamma::{gamma, lanczos_gamma};
27pub use intelligence::SpecialIntelligence;
28pub use polygamma::polygamma;
29pub use zeta::zeta;