mathru 0.16.2

Fundamental algorithms for scientific computing in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Special functions
//!
//! Special functions are particular mathematical functions that have more or less established
//! names and notations due to their importance in mathematical analysis, functional analysis,
//! geometry, physics, or other applications.
//!
//! Fore more information:
//! <https://en.wikipedia.org/wiki/List_of_mathematical_functions>

pub mod beta;
pub mod error;
pub mod gamma;
pub mod hypergeometric;
pub mod lambert_w;