Skip to main content

math_audio_wave/special/
mod.rs

1//! Special mathematical functions for wave equations
2//!
3//! This module provides implementations of special functions commonly
4//! used in wave equation solutions:
5//!
6//! - Spherical Bessel functions (jₙ, yₙ)
7//! - Spherical Hankel functions (hₙ⁽¹⁾, hₙ⁽²⁾)
8//! - Legendre polynomials (Pₙ, Pₙᵐ)
9//!
10//! These functions are critical for:
11//! - Mie theory (sphere scattering)
12//! - Spherical harmonic expansions
13//! - FMM translation operators
14
15pub mod helmholtz;
16mod legendre;
17pub mod spherical;
18
19pub use helmholtz::*;
20pub use legendre::*;
21pub use spherical::*;